/**
* Returns the start x-value (as a double primitive) for an item within a
* series.
*
* @param series the series index (zero-based).
* @param item the item index (zero-based).
*
* @return The value.
*/
public double getStartXValue(int series, int item) {
[[#variable1a8de2c0]] s = ( [[#variable1a8de2c0]]) this.data.get(series);
return s.getXLowValue(item);
}
/**
* Returns the end x-value (as a double primitive) for an item within a
* series.
*
* @param series the series index (zero-based).
* @param item the item index (zero-based).
*
* @return The value.
*/
/**
* Returns the end x-value (as a double primitive) for an item within a
* series.
*
* @param series the series (zero-based index).
* @param item the item (zero-based index).
*
* @return The value.
*/
public double getEndXValue(int series, int item) {
[[#variable1a8de2c0]] s = ( [[#variable1a8de2c0]]) this.data.get(series);
return s.getXHighValue(item);
}
/**
* Returns the y-value (as a double primitive) for an item within a
* series.
*
* @param series the series index (zero-based).
* @param item the item index (zero-based).
*
* @return The value.
*/
public double getYValue(int series, int item) {
[[#variable1a8de2c0]] s = ( [[#variable1a8de2c0]]) this.data.get(series);
return s.getYValue(item);
}
|