Uses of Interface
org.jfree.data.SeriesDataset
Package | Description |
---|---|
de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.layout_control.statistics | |
org.jfree.chart.demo | |
org.jfree.data |
Data interfaces and classes.
|
org.jfree.data.gantt |
Data interfaces and classes for Gantt charts.
|
org.jfree.data.statistics |
Classes for representing statistical data.
|
org.jfree.data.time |
Interfaces and classes for time-related data.
|
-
Uses of SeriesDataset in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.layout_control.statistics
Classes in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.layout_control.statistics that implement SeriesDataset Modifier and Type Class Description class
MyXML_XYDataset
-
Uses of SeriesDataset in org.jfree.chart.demo
Classes in org.jfree.chart.demo that implement SeriesDataset Modifier and Type Class Description 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
SampleXYZDataset
A quick-and-dirty implementation of theinterface
.class
SampleYSymbolicDataset
A dataset implementation that provides random data for a symbolic plot demo.class
SimpleIntervalXYDataset
A quick and dirty sample dataset.class
SimpleIntervalXYDataset2
A quick and dirty sample dataset. -
Uses of SeriesDataset in org.jfree.data
Subinterfaces of SeriesDataset in org.jfree.data Modifier and Type Interface Description interface
ContourDataset
The interface through which JFreeChart obtains data in the form of (x, y, z) items - used for XY and XYZ plots.interface
HighLowDataset
An interface that defines data in the form of (x, high, low, open, close) tuples.interface
IntervalXYDataset
An extension of theXYDataset
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 theXYZDataset
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 anXYDataset
.interface
TableXYDataset
A dataset containing one or more data series containing (x, y) data items, where all series in the dataset share the same set of x-values.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) items 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 org.jfree.data that implement SeriesDataset Modifier and Type Class Description class
AbstractIntervalXYDataset
An base class that you can use to create new implementations of theXYDataset
interface.class
AbstractSeriesDataset
An abstract implementation of theSeriesDataset
interface, containing a mechanism for registering change listeners.class
AbstractXYDataset
An base class that you can use to create new implementations of theXYDataset
interface.class
AbstractXYZDataset
An base class that you can use to create new implementations of theXYZDataset
interface.class
CategoryTableXYDataset
An implementation variant of theTableXYDataset
where every series shares the same x-values (required for generating stacked area charts).class
CombinedDataset
This class can combine instances ofXYDataset
,HighLowDataset
andIntervalXYDataset
together exposing the union of all the series under one dataset.class
DefaultContourDataset
A convenience class that provides a default implementation of theContourDataset
interface.class
DefaultHighLowDataset
A simple implementation of theHighLowDataset
.class
DefaultIntervalCategoryDataset
A convenience class that provides a default implementation of theIntervalCategoryDataset
interface.class
DefaultTableXYDataset
AnXYDataset
where every series shares the same x-values (required for generating stacked area charts).class
DefaultWindDataset
A default implementation of theWindDataset
interface.class
JDBCXYDataset
This class provides anXYDataset
implementation over a database JDBC result set.class
MatrixSeriesCollection
Represents a collection ofMatrixSeries
that can be used as a dataset.class
NonGridContourDataset
A convenience class that extends theDefaultContourDataset
to acommadate non-grid data.class
OHLCDataset
A simple implementation of theHighLowDataset
interface.class
SubSeriesDataset
This class will create a dataset with one or more series from anotherSeriesDataset
.class
XYBarDataset
A dataset wrapper class that converts a standardXYDataset
into anIntervalXYDataset
suitable for use in creating XY bar charts.class
XYSeriesCollection
Represents a collection ofXYSeries
objects that can be used as a dataset.Methods in org.jfree.data that return SeriesDataset Modifier and Type Method Description SeriesDataset
CombinationDataset. getParent()
Returns the parent Dataset of this combination.SeriesDataset
CombinedDataset. getParent()
Returns the parent Dataset of this combination.SeriesDataset
SubSeriesDataset. getParent()
Returns the parent Dataset of this combination.Methods in org.jfree.data with parameters of type SeriesDataset Modifier and Type Method Description 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 org.jfree.data with parameters of type SeriesDataset Constructor Description CombinedDataset(SeriesDataset[] data)
Creates a CombinedDataset initialized with an array of SeriesDatasets.SubSeriesDataset(SeriesDataset parent, int series)
Creates a SubSeriesDataset using one series fromparent
.SubSeriesDataset(SeriesDataset parent, int[] map)
Creates a SubSeriesDataset using one or more series fromparent
. -
Uses of SeriesDataset in org.jfree.data.gantt
Classes in org.jfree.data.gantt that implement SeriesDataset Modifier and Type Class Description class
TaskSeriesCollection
A collection ofTaskSeries
objects. -
Uses of SeriesDataset in org.jfree.data.statistics
Subinterfaces of SeriesDataset in org.jfree.data.statistics Modifier and Type Interface Description interface
BoxAndWhiskerXYDataset
An interface that defines data in the form of (x, max, min, average, median) tuples.Classes in org.jfree.data.statistics that implement SeriesDataset Modifier and Type Class Description class
DefaultBoxAndWhiskerXYDataset
A simple implementation of theBoxAndWhiskerXYDataset
.class
HistogramDataset
A dataset that can be used for creating histograms. -
Uses of SeriesDataset in org.jfree.data.time
Classes in org.jfree.data.time that implement SeriesDataset Modifier and Type Class Description class
DynamicTimeSeriesCollection
A dynamic dataset.class
TimePeriodValuesCollection
A collection ofTimePeriodValues
objects.class
TimeSeriesCollection
A collection of time series objects.class
TimeTableXYDataset
A dataset for regular time periods that implements the TableXYDataset interface.