Uses of Class
org.jfree.data.xy.XYSeries
| Package | Description |
|---|---|
| org.jfree.data.general |
Data interfaces and classes.
|
| org.jfree.data.time |
Interfaces and classes for time-related data.
|
| org.jfree.data.xy |
A package containing the
XYDataset interface and related classes. |
-
Uses of XYSeries in org.jfree.data.general
Methods in org.jfree.data.general that return XYSeries Modifier and Type Method Description static XYSeriesDatasetUtils. sampleFunction2DToSeries(Function2D f, double start, double end, int samples, Comparable seriesKey)Creates anXYSeriesby sampling the specified function over a fixed range. -
Uses of XYSeries in org.jfree.data.time
Methods in org.jfree.data.time that return XYSeries Modifier and Type Method Description static XYSeriesMovingAverage. createMovingAverage(XYDataset source, int series, String name, double period, double skip)Creates a newXYSeriescontaining the moving averages of one series in thesourcedataset. -
Uses of XYSeries in org.jfree.data.xy
Methods in org.jfree.data.xy that return XYSeries Modifier and Type Method Description XYSeriesXYSeries. createCopy(int start, int end)Creates a new series by copying a subset of the data in this time series.XYSeriesDefaultTableXYDataset. getSeries(int series)Returns a series.XYSeriesXYSeriesCollection. getSeries(int series)Returns a series from the collection.XYSeriesXYSeriesCollection. getSeries(Comparable key)Returns a series from the collection.Methods in org.jfree.data.xy with parameters of type XYSeries Modifier and Type Method Description voidDefaultTableXYDataset. addSeries(XYSeries series)Adds a series to the collection and sends aDatasetChangeEventto all registered listeners.voidXYSeriesCollection. addSeries(XYSeries series)Adds a series to the collection and sends aDatasetChangeEventto all registered listeners.intXYSeriesCollection. indexOf(XYSeries series)Returns the index of the specified series, or -1 if that series is not present in the dataset.voidDefaultTableXYDataset. removeSeries(XYSeries series)Removes a series from the collection and sends aDatasetChangeEventto all registered listeners.voidXYSeriesCollection. removeSeries(XYSeries series)Removes a series from the collection and sends aDatasetChangeEventto all registered listeners.Constructors in org.jfree.data.xy with parameters of type XYSeries Constructor Description XYSeriesCollection(XYSeries series)Constructs a dataset and populates it with a single series.