Uses of Class
org.jfree.data.xy.XYSeries
-
Packages that use 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 theXYDatasetinterface 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 <S extends Comparable<S>>
XYSeries<S>DatasetUtils. sampleFunction2DToSeries(Function2D f, double start, double end, int samples, S 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 XYSeries<K>XYSeries. createCopy(int start, int end)Creates a new series by copying a subset of the data in this time series.XYSeries<S>DefaultTableXYDataset. getSeries(int series)Returns a series.XYSeries<S>XYSeriesCollection. getSeries(int series)Returns a series from the collection.XYSeries<S>XYSeriesCollection. getSeries(S key)Returns a series from the collection.Methods in org.jfree.data.xy that return types with arguments of type XYSeries Modifier and Type Method Description List<XYSeries<S>>XYSeriesCollection. getSeries()Returns a list of all the series in the collection.Methods in org.jfree.data.xy with parameters of type XYSeries Modifier and Type Method Description voidDefaultTableXYDataset. addSeries(XYSeries<S> series)Adds a series to the collection and sends aDatasetChangeEventto all registered listeners.voidXYSeriesCollection. addSeries(XYSeries<S> series)Adds a series to the collection and sends aDatasetChangeEventto all registered listeners.intXYSeriesCollection. indexOf(XYSeries<S> series)Returns the index of the specified series, or -1 if that series is not present in the dataset.voidDefaultTableXYDataset. removeSeries(XYSeries<S> series)Removes a series from the collection and sends aDatasetChangeEventto all registered listeners.voidXYSeriesCollection. removeSeries(XYSeries<S> 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<S> series)Constructs a dataset and populates it with a single series.
-