| java.lang.Object | |||||
| ↳ | org.jfree.data.general.AbstractDataset | ||||
| ↳ | org.jfree.data.general.AbstractSeriesDataset | ||||
| ↳ | org.jfree.data.xy.AbstractXYDataset | ||||
| ↳ | org.jfree.data.xy.AbstractIntervalXYDataset | ||||
| ↳ | org.jfree.data.xy.XYBarDataset | ||||
A dataset wrapper class that converts a standard XYDataset into an
IntervalXYDataset suitable for use in creating XY bar charts.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Creates a new dataset.
| |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Returns an independent copy of the dataset.
| |||||||||||
Receives notification of an dataset change event.
| |||||||||||
Tests this dataset for equality with an arbitrary object.
| |||||||||||
Returns the bar width.
| |||||||||||
Returns the ending X value for the specified series and item.
| |||||||||||
Returns the ending x-value (as a double primitive) for an item within
a series.
| |||||||||||
Returns the ending Y value for the specified series and item.
| |||||||||||
Returns the ending y-value (as a double primitive) for an item within
a series.
| |||||||||||
Returns the number of items in a series.
| |||||||||||
Returns the number of series in the dataset.
| |||||||||||
Returns the key for a series.
| |||||||||||
Returns the starting X value for the specified series and item.
| |||||||||||
Returns the starting x-value (as a double primitive) for an item within
a series.
| |||||||||||
Returns the starting Y value for the specified series and item.
| |||||||||||
Returns the starting y-value (as a double primitive) for an item within
a series.
| |||||||||||
Returns the underlying dataset that was specified via the constructor.
| |||||||||||
Returns the x-value for an item within a series.
| |||||||||||
Returns the x-value (as a double primitive) for an item within a series.
| |||||||||||
Returns the y-value for an item within a series.
| |||||||||||
Returns the y-value (as a double primitive) for an item within a series.
| |||||||||||
Sets the bar width and sends a
DatasetChangeEvent to all
registered listeners. | |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
org.jfree.data.xy.AbstractIntervalXYDataset
| |||||||||||
From class
org.jfree.data.xy.AbstractXYDataset
| |||||||||||
From class
org.jfree.data.general.AbstractSeriesDataset
| |||||||||||
From class
org.jfree.data.general.AbstractDataset
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
java.io.ObjectInputValidation
| |||||||||||
From interface
org.jfree.data.general.Dataset
| |||||||||||
From interface
org.jfree.data.general.DatasetChangeListener
| |||||||||||
From interface
org.jfree.data.general.SeriesChangeListener
| |||||||||||
From interface
org.jfree.data.general.SeriesDataset
| |||||||||||
From interface
org.jfree.data.xy.IntervalXYDataset
| |||||||||||
From interface
org.jfree.data.xy.XYDataset
| |||||||||||
Creates a new dataset.
| underlying | the underlying dataset (null not
permitted). |
|---|---|
| barWidth | the width of the bars. |
Returns an independent copy of the dataset. Note that:
| CloneNotSupportedException | if the dataset cannot be cloned for any reason. |
|---|
Receives notification of an dataset change event.
| event | information about the event. |
|---|
Tests this dataset for equality with an arbitrary object.
| obj | the object (null permitted). |
|---|
Returns the ending X value for the specified series and item.
| series | the series index (zero-based). |
|---|---|
| item | the item index (zero-based). |
Returns the ending x-value (as a double primitive) for an item within a series.
| series | the series index (zero-based). |
|---|---|
| item | the item index (zero-based). |
Returns the ending Y value for the specified series and item.
| series | the series index (zero-based). |
|---|---|
| item | the item index (zero-based). |
Returns the ending y-value (as a double primitive) for an item within a series.
| series | the series index (zero-based). |
|---|---|
| item | the item index (zero-based). |
Returns the number of items in a series.
| series | the series index (zero-based). |
|---|
Returns the number of series in the dataset.
Returns the key for a series.
| series | the series index (in the range 0 to
getSeriesCount() - 1). |
|---|
Returns the starting X value for the specified series and item.
| series | the series index (zero-based). |
|---|---|
| item | the item index (zero-based). |
Returns the starting x-value (as a double primitive) for an item within a series.
| series | the series index (zero-based). |
|---|---|
| item | the item index (zero-based). |
Returns the starting Y value for the specified series and item.
| series | the series index (zero-based). |
|---|---|
| item | the item index (zero-based). |
Returns the starting y-value (as a double primitive) for an item within a series.
| series | the series index (zero-based). |
|---|---|
| item | the item index (zero-based). |
Returns the underlying dataset that was specified via the constructor.
null).Returns the x-value for an item within a series.
| series | the series index (zero-based). |
|---|---|
| item | the item index (zero-based). |
Returns the x-value (as a double primitive) for an item within a series.
| series | the series index (zero-based). |
|---|---|
| item | the item index (zero-based). |
Returns the y-value for an item within a series.
| series | the series index (zero-based). |
|---|---|
| item | the item index (zero-based). |
null).Returns the y-value (as a double primitive) for an item within a series.
| series | the series index (zero-based). |
|---|---|
| item | the item index (zero-based). |
Sets the bar width and sends a DatasetChangeEvent to all
registered listeners.
| barWidth | the bar width. |
|---|