Uses of Class
com.quinncurtis.chart3djava.SimpleDataset

Uses of SimpleDataset in com.quinncurtis.chart3djava
 

Subclasses of SimpleDataset in com.quinncurtis.chart3djava
 class ContourDataset
          The ContourDataset class extends the SimpleDataset class, adding a third dimension (z-values) needed to produce a contour plot.
 class SimpleDataset3D
          A simple 3D dataset class encapsulates x-, y- and z-data values that are to be used as source of chart information.
 class TimeSimpleDataset
          A simple dataset class encapsulates x- and y-data values that are to be used as source of chart information.
 class TimeSimpleDataset3D
          Summary description for TimeSimpleDataset3D.
 

Methods in com.quinncurtis.chart3djava that return SimpleDataset
 SimpleDataset SimpleDataset.compressSimpleDataset(int ctypex, int ctypey, int interval, int startindex, int endindex, java.lang.String newname)
          This methods creates and returns a new dataset that is the data reduced version of the source dataset.
 SimpleDataset TimeSimpleDataset3D.getFastClipDataset(java.lang.String s, PhysicalCoordinates transform, int fastclipmode, java.lang.Integer fastclipoffset)
          This method returns a truncated dataset that only includes the datapoints within the current scaling limits, assuming the the data is monotonic in the x or y direction.
 SimpleDataset SimpleDataset3D.getFastClipDataset(java.lang.String s, PhysicalCoordinates transform, int fastclipmode, java.lang.Integer fastclipoffset)
          This method returns a truncated dataset that only includes the datapoints within the current scaling limits, assuming the the data is monotonic in the x or y direction.
 SimpleDataset SimpleDataset.getFastClipDataset(java.lang.String s, PhysicalCoordinates transform, int fastclipmode, java.lang.Integer fastclipoffset)
          This method returns a truncated dataset that only includes the datapoints within the current scaling limits, assuming the the data is monotonic in the x or y direction.
 SimpleDataset GroupDataset.getSimpleDataset(java.lang.String sname, int group)
          This methods creates a new, SimpleDataset object using the x-values and the y-values of the specified group.
 

Methods in com.quinncurtis.chart3djava with parameters of type SimpleDataset
static boolean ChartSupport.calcNearestPoint(PhysicalCoordinates transform, SimpleDataset dataset, boolean coordswap, ChartPoint3D testpoint, int nmode, NearestPointData nearestpoint)
          This method compares a test point against all of the xy points in a simple dataset and calculates which point in the dataset is nearest the test point.
 void SimpleDataset.combineDataset(SimpleDataset source, int combinecoord, int op)
          Combine this dataset with another, using one of three combine modes (COMBINE_DATASET_X, COMBINE_DATASET_Y, or COMBINE_DATASET_XY), and four combine operators (COMBINE_DATASET_ADD, COMBINE_DATASET_SUBTRACT, COMBINE_DATASET_MUTLIPLY or COMBINE_DATASET_DIVIDE).
 void SimpleDataset.copy(SimpleDataset source)
          Copies the source dataset.
 void SimpleBarPlot.initBarPlot(SimpleDataset dataset, double barwidth, double barbase, ChartAttribute attrib, int barjust)
          Sets the properties of a bar plot.
 void SimplePlot.setDataset(SimpleDataset dataset)
          Replaces the current SimpleDataset object with a new one.
 void PieChartBase.setDataset(SimpleDataset dataset)
          Replaces the current SimpleDataset object with a new one.
 void PieChart.setDataset(SimpleDataset dataset)
          Replaces the current SimpleDataset object with a new one.
 void SimpleLineMarkerPlot.setLineMarkerPlot(SimpleDataset dataset, int symtype, ChartAttribute lineattrib, ChartAttribute symbolattrib, int nsymbolstart, int nsymbolskip)
          Sets the properties of a line marker plot.
 void SimpleLinePlot.setLinePlot(SimpleDataset dataset, ChartAttribute attrib)
          Sets the properties of a line plot.
 void PipeLinePlot.setPipeLinePlot(SimpleDataset dataset, ChartAttribute attrib)
          Sets the properties of a pipe-line plot.
 void SimpleRibbonPlot.setRibbonPlot(SimpleDataset dataset, ChartAttribute attrib)
          Sets the properties of a line plot.
 void SimpleScatterPlot.setScatterPlot(SimpleDataset dataset, int symtype, ChartAttribute attrib)
          Sets the properties of a scatter plot.
 

Constructors in com.quinncurtis.chart3djava with parameters of type SimpleDataset
PieChart(PhysicalCoordinates transform, SimpleDataset dataset, java.lang.String[] spiestring1s, ChartAttribute[] attribs, int labelinout1, int pielabelformat)
          This constructor creates a new PieChart object and scales it to match the specified minimum and maximum values.
PieChartBase(PhysicalCoordinates transform, SimpleDataset dataset, java.lang.String[] spiestring1s, ChartAttribute[] attribs, int labelinout1, int pielabelformat)
          This constructor creates a new PieChartBase object and scales it to match the specified minimum and maximum values.
PipeLinePlot(PhysicalCoordinates transform, SimpleDataset dataset, ChartAttribute attrib)
          This constructor creates a new PipeLinePlot object that will reside in the specified coordinate system.
PipeLinePlot(PhysicalCoordinates transform, SimpleDataset dataset, ChartAttribute attrib, ChartAttribute symbolattrib)
          This constructor creates a new PipeLinePlot object that will reside in the specified coordinate system.
SimpleBarPlot(PhysicalCoordinates transform, SimpleDataset dataset, double barwidth, double barbase, ChartAttribute attrib, int barjust)
          This constructor creates a new SimpleBarPlot object that will reside in the specified coordinate system.
SimpleLineMarkerPlot(PhysicalCoordinates transform, SimpleDataset dataset, int symtype, ChartAttribute lineattrib, ChartAttribute symbolattrib, int nsymbolstart, int nsymbolskip)
          This constructor creates a new SimpleLineMarkerPlot object that will reside in the specified coordinate system.
SimpleLinePlot(PhysicalCoordinates transform, SimpleDataset dataset, ChartAttribute attrib)
          This constructor creates a new SimpleLinePlot object that will reside in the specified coordinate system.
SimpleRibbonPlot(PhysicalCoordinates transform, SimpleDataset dataset, ChartAttribute attrib)
          This constructor creates a new SimpleRibbonPlot object that will reside in the specified coordinate system.
SimpleScatterPlot(PhysicalCoordinates transform, SimpleDataset dataset, int symtype, ChartAttribute attrib)
          This constructor creates a new SimpleScatterPlot object that will reside in the specified coordinate system.