| java.lang.Object | |||||
| ↳ | org.jfree.data.general.AbstractDataset | ||||
| ↳ | org.jfree.data.general.AbstractSeriesDataset | ||||
| ↳ | org.jfree.data.xy.AbstractXYDataset | ||||
| ↳ | org.jfree.data.xy.AbstractXYZDataset | ||||
| ↳ | org.jfree.data.contour.DefaultContourDataset | ||||
Known Direct Subclasses
|
This class is deprecated.
This class is no longer supported (as of version 1.0.4). If
you are creating contour plots, please try to use XYPlot and
XYBlockRenderer.
A convenience class that provides a default implementation of the
ContourDataset interface.
| Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| seriesKey | The series name (this dataset supports only one series). | ||||||||||
| xIndex | The index for the start of each column in the data. | ||||||||||
| xValues | Storage for the x values. | ||||||||||
| yValues | Storage for the y values. | ||||||||||
| zValues | Storage for the z values. | ||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Creates a new dataset, initially empty.
| |||||||||||
Constructs a new dataset with the given data.
| |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Creates an object array from an array of doubles.
| |||||||||||
Creates an object array from an array of doubles.
| |||||||||||
Returns the number of items in the specified series.
| |||||||||||
Returns the maximum z-value.
| |||||||||||
Returns the minimum z-value.
| |||||||||||
Returns the minimum z-value.
| |||||||||||
Returns the number of series.
| |||||||||||
Returns the name of the specified series.
| |||||||||||
Returns the x value for the specified series and index (zero-based
indices).
| |||||||||||
Returns the index of the xvalues.
| |||||||||||
Returns an x value.
| |||||||||||
Returns the x values.
| |||||||||||
Returns the y value for the specified series and index (zero-based
indices).
| |||||||||||
Returns a Number array containing all y values.
| |||||||||||
Returns the z value for the specified series and index (zero-based
indices).
| |||||||||||
Returns the maximum z-value within visible region of plot.
| |||||||||||
Returns a Number array containing all z values.
| |||||||||||
Given index k, returns the column index containing k.
| |||||||||||
Returns an int array contain the index into the x values.
| |||||||||||
Given index k, return the row index containing k.
| |||||||||||
Given column and row indices, returns the k index.
| |||||||||||
Initialises the dataset.
| |||||||||||
Returns true if axis are dates.
| |||||||||||
Sets the names of the series in the data source.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
org.jfree.data.xy.AbstractXYZDataset
| |||||||||||
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.contour.ContourDataset
| |||||||||||
From interface
org.jfree.data.general.Dataset
| |||||||||||
From interface
org.jfree.data.general.SeriesChangeListener
| |||||||||||
From interface
org.jfree.data.general.SeriesDataset
| |||||||||||
From interface
org.jfree.data.xy.XYDataset
| |||||||||||
From interface
org.jfree.data.xy.XYZDataset
| |||||||||||
The index for the start of each column in the data.
Creates a new dataset, initially empty.
Constructs a new dataset with the given data.
| seriesKey | the series key. |
|---|---|
| xData | the x values. |
| yData | the y values. |
| zData | the z values. |
Creates an object array from an array of doubles.
| data | the data. |
|---|
Double objects.
Creates an object array from an array of doubles.
| data | the data. |
|---|
Double objects.
Returns the number of items in the specified series. This method
is provided to satisfy the XYDataset interface implementation.
| series | must be zero, as this dataset only supports one series. |
|---|
Returns the maximum z-value.
Returns the minimum z-value.
| minX | the minimum x value. |
|---|---|
| minY | the minimum y value. |
| maxX | the maximum x value. |
| maxY | the maximum y value. |
Returns the minimum z-value.
Returns the number of series.
Required by XYDataset interface (this will always return 1)
Returns the name of the specified series. Method provided to satisfy the XYDataset interface implementation
| series | must be zero. |
|---|
Returns the x value for the specified series and index (zero-based
indices). Required by the XYDataset.
| series | must be zero; |
|---|---|
| item | the item index (zero-based). |
Returns the index of the xvalues.
Returns an x value.
| item | the item index (zero-based). |
|---|
Returns the y value for the specified series and index (zero-based
indices). Required by the XYDataset.
| series | the series index (must be zero for this dataset). |
|---|---|
| item | the item index (zero-based). |
Returns the z value for the specified series and index (zero-based
indices). Required by the XYDataset
| series | the series index (must be zero for this dataset). |
|---|---|
| item | the item index (zero-based). |
Returns the maximum z-value within visible region of plot.
| x | the x range. |
|---|---|
| y | the y range. |
Given index k, returns the column index containing k.
| k | index of interest. |
|---|
Returns an int array contain the index into the x values.
Given index k, return the row index containing k.
| k | index of interest. |
|---|
Given column and row indices, returns the k index.
| i | index of along x-axis. |
|---|---|
| j | index of along y-axis. |
Initialises the dataset.
| xData | the x values. |
|---|---|
| yData | the y values. |
| zData | the z values. |
Returns true if axis are dates.
| axisNumber | The axis where 0-x, 1-y, and 2-z. |
|---|
Sets the names of the series in the data source.
| seriesKeys | the keys of the series in the data source. |
|---|