List of usage examples for org.jfree.data.xyz XYZSeries getYValue
public double getYValue(int itemIndex)
From source file:org.jfree.data.xyz.XYZSeriesCollection.java
/** * Returns the y-value for one item in a series. * /*from www .jav a 2 s. co m*/ * @param seriesIndex the series index. * @param itemIndex the item index. * * @return The y-value. */ @Override public double getYValue(int seriesIndex, int itemIndex) { XYZSeries s = this.series.get(seriesIndex); return s.getYValue(itemIndex); }