/**
* Returns the x-value for the specified item.
*
* @param index the item index.
*
* @return The x-value (never <code>null</code>).
*/
public Number getX(int index) {
[[#variable1a8e1160]] item = ( [[#variable1a8e1160]]) getDataItem(index);
return item.getX();
}
/**
* Returns the lower bound of the x-interval for the specified item in the
* series.
*
* @param index the item index.
*
* @return The lower bound of the x-interval.
*
* @since 1.0.5
*/
/**
* Returns the lower bound of the x-interval for the specified item.
*
* @param index the item index.
*
* @return The lower bound of the x-interval.
*
* @since 1.0.10
*/
public double getXLowValue(int index) {
[[#variable1a8e1160]] item = ( [[#variable1a8e1160]]) getDataItem(index);
return item.getXLowValue();
}
/**
* Returns the upper bound of the x-interval for the specified item in the
* series.
*
* @param index the item index.
*
* @return The upper bound of the x-interval.
*
* @since 1.0.5
*/
/**
* Returns the upper bound of the x-interval for the specified item.
*
* @param index the item index.
*
* @return The upper bound of the x-interval.
*
* @since 1.0.10
*/
public double getXHighValue(int index) {
[[#variable1a8e1160]] item = ( [[#variable1a8e1160]]) getDataItem(index);
return item.getXHighValue();
}
/**
* Returns the y-value for the specified item.
*
* @param index the item index.
*
* @return The y-value.
*/
public double getYValue(int index) {
[[#variable1a8e1160]] item = ( [[#variable1a8e1160]]) getDataItem(index);
return item.getYValue();
}
|