org.jfree.data.contour
Interface ContourDataset
- Dataset, SeriesDataset, XYDataset, XYZDataset
- DefaultContourDataset, NonGridContourDataset
The interface through which JFreeChart obtains data in the form of (x, y, z)
items - used for XY and XYZ plots.
double | getMaxZValue() - Returns the largest Z data value.
|
double | getMinZValue() - Returns the smallest Z data value.
|
int[] | getXIndices() - Returns the index of the xvalues.
|
Number[] | getXValues() - Returns the array of Numbers representing the x data values.
|
Number[] | getYValues() - Returns the array of Numbers representing the y data values.
|
Range | getZValueRange(Range x, Range y) - Returns the maximum z-value within visible region of plot.
|
Number[] | getZValues() - Returns the array of Numbers representing the z data values.
|
int[] | indexX() - Returns an int array contain the index into the x values.
|
boolean | isDateAxis(int axisNumber) - Returns true if axis are dates.
|
getMaxZValue
public double getMaxZValue()
Returns the largest Z data value.
getMinZValue
public double getMinZValue()
Returns the smallest Z data value.
getXIndices
public int[] getXIndices()
Returns the index of the xvalues.
getXValues
public Number[] getXValues()
Returns the array of Numbers representing the x data values.
getYValues
public Number[] getYValues()
Returns the array of Numbers representing the y data values.
getZValueRange
public Range getZValueRange(Range x,
Range y)
Returns the maximum z-value within visible region of plot.
x
- the x-value.y
- the y-value.
getZValues
public Number[] getZValues()
Returns the array of Numbers representing the z data values.
indexX
public int[] indexX()
Returns an int array contain the index into the x values.
isDateAxis
public boolean isDateAxis(int axisNumber)
Returns true if axis are dates.
axisNumber
- the axis where 0-x, 1-y, and 2-z.