Uses of Interface
com.jrefinery.data.SeriesDataset

Packages that use SeriesDataset
com.jrefinery.chart.demo Demonstration applications for the JFreeChart class library. 
com.jrefinery.data Data interfaces and classes. 
 

Uses of SeriesDataset in com.jrefinery.chart.demo
 

Classes in com.jrefinery.chart.demo that implement SeriesDataset
 class EmptyXYDataset
          An empty dataset for testing purposes.
 class SampleSignalDataset
          A sample signal dataset.
 class SampleXYDataset
          A dummy dataset for an XY plot.
 class SampleXYDataset2
          Random data for a scatter plot demo.
 class SampleXYSymbolicDataset
          Random data for a symbolic plot demo.
 class SampleYSymbolicDataset
          Random data for a symbolic plot demo.
 class SimpleIntervalXYDataset
          A quick and dirty sample dataset.
 

Uses of SeriesDataset in com.jrefinery.data
 

Subinterfaces of SeriesDataset in com.jrefinery.data
 interface CategoryDataset
          The interface for a dataset with one or more series, and values associated with "categories".
 interface HighLowDataset
          An interface that defines data in the form of (x, high, low, open, close) tuples.
 interface IntervalCategoryDataset
          A category dataset that defines a value range for each series/category combination.
 interface IntervalXYDataset
          An extension of the XYDataset interface that allows a range of data to be defined for the X values, the Y values, or both the X and Y values.
 interface IntervalXYZDataset
          An extension of the XYZDataset interface that allows a range of data to be defined for any of the X values, the Y values, and the Z values.
 interface SignalsDataset
          An interface that adds signal information to an XYDataset.
 interface StatisticalCategoryDataset
          A category dataset that defines a median and standard deviation value for each series/category combination.
 interface WindDataset
          Interface for a dataset that supplies wind intensity and direction values observed at various points in time.
 interface XYDataset
          An interface through which data in the form of (x, y) pairs can be accessed.
 interface XYZDataset
          The interface through which JFreeChart obtains data in the form of (x, y, z) items - used for XY and XYZ plots.
 

Classes in com.jrefinery.data that implement SeriesDataset
 class AbstractSeriesDataset
          An abstract implementation of the Dataset interface, containing a mechanism for registering change listeners.
 class CombinedDataset
          This class can combine XYDatasets, HighLowDatasets and IntervalXYDatasets together exposing the union of all the series under one Dataset.
 class DefaultCategoryDataset
          A convenience class that provides a default implementation of the CategoryDataset interface.
 class DefaultHighLowDataset
          A simple implementation of the HighLowDataset.
 class DefaultIntervalCategoryDataset
          A convenience class that provides a default implementation of the IntervalCategoryDataset interface.
 class DefaultStatisticalCategoryDataset
          A convenience class that provides a default implementation of the StatisticalCategoryDataset interface.
 class DefaultWindDataset
          A default implementation of the WindDataset interface.
 class DefaultXYDataset
          A convenience class that provides a default implementation of the XYDataset interface.
 class GanttSeriesCollection
          A collection of GanttSeries objects.
 class JdbcCategoryDataset
          A CategoryDataset implementation over a database JDBC result set.
 class JdbcXYDataset
          This class provides an chart XYDataset implementation over a database JDBC result set.
 class SubSeriesDataset
          This class will create a Dataset with one or more series from another SeriesDataset.
 class TimeSeriesCollection
          A collection of time series objects.
 class XYSeriesCollection
          Represents a collection of time series that can be used as a dataset.
 

Methods in com.jrefinery.data that return SeriesDataset
 SeriesDataset SubSeriesDataset.getParent()
          Returns the parent Dataset of this combination.
 SeriesDataset CombinedDataset.getParent()
          Returns the parent Dataset of this combination.
 SeriesDataset CombinationDataset.getParent()
          Returns the parent Dataset of this combination.
 

Methods in com.jrefinery.data with parameters of type SeriesDataset
 void CombinedDataset.add(SeriesDataset data)
          Adds one SeriesDataset to the combination.
 void CombinedDataset.add(SeriesDataset[] data)
          Adds an array of SeriesDataset's to the combination.
 void CombinedDataset.add(SeriesDataset data, int series)
          Adds one series from a SeriesDataset to the combination.
 

Constructors in com.jrefinery.data with parameters of type SeriesDataset
SubSeriesDataset(SeriesDataset parent, int[] map)
          Creates a SubSeriesDataset using one or more series from parent.
SubSeriesDataset(SeriesDataset parent, int series)
          Creates a SubSeriesDataset using one series from parent.
CombinedDataset(SeriesDataset[] data)
          Creates a CombinedDataset initialized with an array of SeriesDatasets.