|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object
|
+--org.jfree.data.AbstractDataset
|
+--org.jfree.data.AbstractSeriesDataset
|
+--org.jfree.data.CombinedDataset
This class can combine XYDatasets, HighLowDatasets and IntervalXYDatasets together exposing the union of all the series under one Dataset. This is required when using a CombinedPlot with a combination of XYPlots, HighLowPlots, TimeSeriesPlot's and VerticalXYBarPlots.
CombinedXYPlot,
Serialized Form| Constructor Summary | |
CombinedDataset()
Default constructor for an empty combination. |
|
CombinedDataset(SeriesDataset[] data)
Creates a CombinedDataset initialized with an array of SeriesDatasets. |
|
| Method Summary | |
void |
add(SeriesDataset data)
Adds one SeriesDataset to the combination. |
void |
add(SeriesDataset[] data)
Adds an array of SeriesDataset's to the combination. |
void |
add(SeriesDataset data,
int series)
Adds one series from a SeriesDataset to the combination. |
int |
getChildPosition(Dataset child)
Returns the child position. |
java.lang.Number |
getCloseValue(int series,
int item)
Returns the close-value for the specified series and item. |
java.lang.Number |
getEndXValue(int series,
int item)
Returns the ending X value for the specified series and item. |
java.lang.Number |
getEndYValue(int series,
int item)
Returns the ending Y value for the specified series and item. |
java.lang.Number |
getHighValue(int series,
int item)
Returns the high-value for the specified series and item. |
int |
getItemCount(int series)
Returns the number of items in a series. |
java.lang.Number |
getLowValue(int series,
int item)
Returns the low-value for the specified series and item. |
int[] |
getMap()
Returns a map or indirect indexing form our series into parent's series. |
java.lang.Number |
getOpenValue(int series,
int item)
Returns the open-value for the specified series and item. |
SeriesDataset |
getParent()
Returns the parent Dataset of this combination. |
int |
getSeriesCount()
Returns the number of series in the dataset. |
java.lang.String |
getSeriesName(int series)
Returns the name of a series. |
java.lang.Number |
getStartXValue(int series,
int item)
Returns the starting X value for the specified series and item. |
java.lang.Number |
getStartYValue(int series,
int item)
Returns the starting Y value for the specified series and item. |
java.lang.Number |
getVolumeValue(int series,
int item)
Returns the volume value for the specified series and item. |
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. |
| Methods inherited from class org.jfree.data.AbstractSeriesDataset |
seriesChanged |
| Methods inherited from class org.jfree.data.AbstractDataset |
addChangeListener, fireDatasetChanged, getGroup, notifyListeners, removeChangeListener, setGroup |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface org.jfree.data.Dataset |
addChangeListener, getGroup, removeChangeListener, setGroup |
| Constructor Detail |
public CombinedDataset()
public CombinedDataset(SeriesDataset[] data)
data - array of SeriesDataset that contains the SeriesDatasets to combine.| Method Detail |
public void add(SeriesDataset data)
data - the SeriesDataset to add.public void add(SeriesDataset[] data)
data - array of SeriesDataset to add
public void add(SeriesDataset data,
int series)
data - the SeriesDataset where series is containedseries - series to addpublic int getSeriesCount()
getSeriesCount in interface SeriesDatasetgetSeriesCount in class AbstractSeriesDatasetpublic java.lang.String getSeriesName(int series)
getSeriesName in interface SeriesDatasetgetSeriesName in class AbstractSeriesDatasetseries - the series (zero-based index).
public java.lang.Number getXValue(int series,
int item)
getXValue in interface XYDatasetseries - the index of the series of interest (zero-based).item - the index of the item of interest (zero-based).
java.lang.ClassCastException - if the series if not from a XYDataset
public java.lang.Number getYValue(int series,
int item)
getYValue in interface XYDatasetseries - the index of the series of interest (zero-based).item - the index of the item of interest (zero-based).
java.lang.ClassCastException - if the series if not from a XYDatasetpublic int getItemCount(int series)
getItemCount in interface XYDatasetseries - the index of the series of interest (zero-based).
java.lang.ClassCastException - if the series if not from a XYDataset
public java.lang.Number getHighValue(int series,
int item)
getHighValue in interface HighLowDatasetseries - the index of the series of interest (zero-based).item - the index of the item of interest (zero-based).
java.lang.ClassCastException - if the series if not from a HighLowDataset
public java.lang.Number getLowValue(int series,
int item)
getLowValue in interface HighLowDatasetseries - the index of the series of interest (zero-based).item - the index of the item of interest (zero-based).
java.lang.ClassCastException - if the series if not from a HighLowDataset
public java.lang.Number getOpenValue(int series,
int item)
getOpenValue in interface HighLowDatasetseries - the index of the series of interest (zero-based).item - the index of the item of interest (zero-based).
java.lang.ClassCastException - if the series if not from a HighLowDataset.
public java.lang.Number getCloseValue(int series,
int item)
getCloseValue in interface HighLowDatasetseries - the index of the series of interest (zero-based).item - the index of the item of interest (zero-based).
java.lang.ClassCastException - if the series if not from a HighLowDataset.
public java.lang.Number getVolumeValue(int series,
int item)
getVolumeValue in interface HighLowDatasetseries - the index of the series of interest (zero-based).item - the index of the item of interest (zero-based).
java.lang.ClassCastException - if the series if not from a HighLowDataset.
public java.lang.Number getStartXValue(int series,
int item)
getStartXValue in interface IntervalXYDatasetseries - the index of the series of interest (zero-based).item - the index of the item of interest (zero-based).
public java.lang.Number getEndXValue(int series,
int item)
getEndXValue in interface IntervalXYDatasetseries - the index of the series of interest (zero-based).item - the index of the item of interest (zero-based).
public java.lang.Number getStartYValue(int series,
int item)
getStartYValue in interface IntervalXYDatasetseries - the index of the series of interest (zero-based).item - the index of the item of interest (zero-based).
public java.lang.Number getEndYValue(int series,
int item)
getEndYValue in interface IntervalXYDatasetseries - the index of the series of interest (zero-based).item - the index of the item of interest (zero-based).
public SeriesDataset getParent()
null.
getParent in interface CombinationDatasetnull.public int[] getMap()
getMap in interface CombinationDatasetgetParent()public int getChildPosition(Dataset child)
child - the child dataset.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||