com.java4less.rchart
Class LinePlotter3D

java.lang.Object
  |
  +--com.java4less.rchart.ChartComponent
        |
        +--com.java4less.rchart.Plotter
              |
              +--com.java4less.rchart.LinePlotter3D

public class LinePlotter3D
extends Plotter


This is the plotter used to draw a line chart. It only admits DataSeries of type LineDataSerie.
Example:
com.java4less.rchart.LinePlotter plot=new LinePlotter();
chart.addSerie(data2);
chart.addSerie(data1);


Field Summary
 LineStyle border
          style of the lines' border.
 boolean fixedLimits
          clip lines using maximum and minimum values if the scale?
 int interLineSpace
          pixels between two 3D lines (ribbons).
 
Fields inherited from class com.java4less.rchart.Plotter
back, backImage, depth, visibleHeight, visibleWidth, XScale, Y2Scale, YScale
 
Fields inherited from class com.java4less.rchart.ChartComponent
height, width, x, y
 
Constructor Summary
LinePlotter3D()
           
 
Methods inherited from class com.java4less.rchart.Plotter
addSerie, getCombinable, getNeedsAxis, getSerie, getSeriesCount, plot, plotBackground, replaceSerie, setSerie
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

fixedLimits

public boolean fixedLimits
clip lines using maximum and minimum values if the scale?

border

public LineStyle border
style of the lines' border. The default is null (no border).

interLineSpace

public int interLineSpace
pixels between two 3D lines (ribbons).
Constructor Detail

LinePlotter3D

public LinePlotter3D()