Uses of Interface
com.jrefinery.data.Dataset

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

Uses of Dataset in com.jrefinery.chart
 

Fields in com.jrefinery.chart declared as Dataset
protected  Dataset Plot.dataset
          The data.
 

Methods in com.jrefinery.chart that return Dataset
 Dataset Plot.getDataset()
          Returns the dataset for the plot.
 

Methods in com.jrefinery.chart with parameters of type Dataset
 void Plot.setDataset(Dataset data)
          Sets the data for the chart, replacing any existing data.
 

Constructors in com.jrefinery.chart with parameters of type Dataset
Plot(Dataset data)
          Constructs a new plot with the specified axes.
Plot(Dataset data, java.awt.Insets insets, java.awt.Paint backgroundPaint, java.awt.Image backgroundImage, float backgroundAlpha, java.awt.Stroke outlineStroke, java.awt.Paint outlinePaint, float foregroundAlpha)
          Constructs a new plot.
 

Uses of Dataset in com.jrefinery.chart.demo
 

Classes in com.jrefinery.chart.demo that implement Dataset
 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 Dataset in com.jrefinery.data
 

Subinterfaces of Dataset 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 MeterDataset
          A dataset containing a single value within an overall range.
 interface PieDataset
          The interface for a general-purpose dataset where values are associated with categories.
 interface SeriesDataset
          The interface for a dataset consisting of one or many series of data.
 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 Dataset
 class AbstractDataset
          An abstract implementation of the Dataset interface, containing a mechanism for registering change listeners.
 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 DefaultMeterDataset
          A default implementation of the MeterDataset interface.
 class DefaultPieDataset
          A default implementation of the PieDataset 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 JdbcPieDataset
          A pie dataset that reads data from a database via JDBC.
 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 Dataset
 Dataset DatasetChangeEvent.getDataset()
          Returns the dataset that generated the event.
 

Methods in com.jrefinery.data with parameters of type Dataset
 int CombinedDataset.getChildPosition(Dataset child)
          Returns the child position.
static Range DatasetUtilities.getDomainExtent(Dataset data)
          Returns the range of values in the domain for the dataset.
static Range DatasetUtilities.getRangeExtent(Dataset data)
          Returns the range of values in the range for the dataset.
static java.lang.Number DatasetUtilities.getMinimumDomainValue(Dataset data)
          Returns the minimum domain value for the specified dataset.
static java.lang.Number DatasetUtilities.getMaximumDomainValue(Dataset data)
          Returns the maximum domain value for the specified dataset.
static java.lang.Number DatasetUtilities.getMinimumRangeValue(Dataset data)
          Returns the minimum range value for the specified dataset.
static java.lang.Number DatasetUtilities.getMaximumRangeValue(Dataset data)
          Returns the maximum range value for the specified dataset.
 

Constructors in com.jrefinery.data with parameters of type Dataset
DatasetChangeEvent(java.lang.Object source, Dataset data)
          Constructs a new event.