|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Objectcom.jrefinery.data.AbstractDataset
com.jrefinery.data.AbstractSeriesDataset
com.jrefinery.data.XYSeriesCollection
public class XYSeriesCollection
Represents a collection of time series that can be used as a dataset.
| Field Summary | |
|---|---|
protected java.util.List |
data
The series that are included in the collection. |
| Fields inherited from class com.jrefinery.data.AbstractDataset |
|---|
listeners |
| Constructor Summary | |
|---|---|
XYSeriesCollection()
Constructs an empty dataset. |
|
XYSeriesCollection(XYSeries series)
Constructs a dataset and populates it with a single time series. |
|
| Method Summary | |
|---|---|
void |
addSeries(XYSeries series)
Adds a series to the collection. |
int |
getItemCount(int series)
Returns the number of items in the specified series. |
XYSeries |
getSeries(int series)
Returns a series. |
int |
getSeriesCount()
Returns the number of series in the collection. |
java.lang.String |
getSeriesName(int series)
Returns the name of a series. |
java.lang.Number |
getXValue(int series,
int item)
Returns the x-value for the specified series and item. |
java.lang.Number |
getYValue(int series,
int item)
Returns the y-value for the specified series and item. |
void |
removeAllSeries()
Removes all the series from the collection. |
void |
removeSeries(int series)
Removes a series from the collection. |
void |
removeSeries(XYSeries series)
Removes a series from the collection. |
| Methods inherited from class com.jrefinery.data.AbstractSeriesDataset |
|---|
getLegendItemCount, getLegendItemLabels, seriesChanged |
| Methods inherited from class com.jrefinery.data.AbstractDataset |
|---|
addChangeListener, fireDatasetChanged, notifyListeners, removeChangeListener |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface com.jrefinery.data.Dataset |
|---|
addChangeListener, removeChangeListener |
| Field Detail |
|---|
protected java.util.List data
| Constructor Detail |
|---|
public XYSeriesCollection()
public XYSeriesCollection(XYSeries series)
The - time series.| Method Detail |
|---|
public void addSeries(XYSeries series)
Notifies all registered listeners that the dataset has changed.
series - The series.public int getSeriesCount()
getSeriesCount in interface SeriesDatasetgetSeriesCount in class AbstractSeriesDatasetpublic XYSeries getSeries(int series)
series - The series (zero-based index).
public java.lang.String getSeriesName(int series)
getSeriesName in interface SeriesDatasetgetSeriesName in class AbstractSeriesDatasetseries - The series (zero-based index).
public int getItemCount(int series)
getItemCount in interface XYDatasetseries - The series (zero-based index).
public java.lang.Number getXValue(int series,
int item)
getXValue in interface XYDatasetseries - The series (zero-based index).item - The item (zero-based index).
public java.lang.Number getYValue(int series,
int item)
getYValue in interface XYDatasetseries - The series (zero-based index).itemIndex - The index of the item of interest (zero-based).
public void removeAllSeries()
Notifies all registered listeners that the dataset has changed.
public void removeSeries(XYSeries series)
Notifies all registered listeners that the dataset has changed.
series - The series.public void removeSeries(int series)
Notifies all registered listeners that the dataset has changed.
series - The series(zero based index).
|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||