Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
org.jfree.data.xy.XYSeries

Uses of XYSeries in org.jfree.data.xy
 

Methods in org.jfree.data.xy that return XYSeries
 XYSeries XYSeries.createCopy(int start, int end)
          Creates a new series by copying a subset of the data in this time series.
 XYSeries XYSeriesCollection.getSeries(int series)
          Returns a series from the collection.
 XYSeries DefaultTableXYDataset.getSeries(int series)
          Returns a series.
 

Methods in org.jfree.data.xy with parameters of type XYSeries
 void XYSeriesCollection.addSeries(XYSeries series)
          Adds a series to the collection and sends a org.jfree.data.general.DatasetChangeEvent to all registered listeners.
 void XYSeriesCollection.removeSeries(XYSeries series)
          Removes a series from the collection and sends a org.jfree.data.general.DatasetChangeEvent to all registered listeners.
 void DefaultTableXYDataset.addSeries(XYSeries series)
          Adds a series to the collection and sends a org.jfree.data.general.DatasetChangeEvent to all registered listeners.
private  void DefaultTableXYDataset.updateXPoints(XYSeries series)
          Adds any unique x-values from 'series' to the dataset, and also adds any x-values that are in the dataset but not in 'series' to the series.
 void DefaultTableXYDataset.removeSeries(XYSeries series)
          Removes a series from the collection and sends a org.jfree.data.general.DatasetChangeEvent to all registered listeners.
 

Constructors in org.jfree.data.xy with parameters of type XYSeries
XYSeriesCollection(XYSeries series)
          Constructs a dataset and populates it with a single series.