org.jfree.data.xy
Class YIntervalDataItem
- Cloneable, Comparable, Serializable
An item representing data in the form (x, y, y-low, y-high).
YIntervalDataItem(double x, double y, double yLow, double yHigh) - Creates a new instance of
YIntervalItem .
|
Double | getX() - Returns the x-value.
|
double | getYHighValue() - Returns the upper bound of the y-interval.
|
double | getYLowValue() - Returns the lower bound of the y-interval.
|
double | getYValue() - Returns the y-value.
|
YIntervalDataItem
public YIntervalDataItem(double x,
double y,
double yLow,
double yHigh)
Creates a new instance of YIntervalItem
.
x
- the x-value.y
- the y-value.yLow
- the lower bound of the y-interval.yHigh
- the upper bound of the y-interval.
getX
public Double getX()
Returns the x-value.
- The x-value (never
null
).
getYHighValue
public double getYHighValue()
Returns the upper bound of the y-interval.
- The upper bound of the y-interval.
getYLowValue
public double getYLowValue()
Returns the lower bound of the y-interval.
- The lower bound of the y-interval.
getYValue
public double getYValue()
Returns the y-value.