List of usage examples for org.jfree.data.xyz XYZSeries getZValue
public double getZValue(int itemIndex)
From source file:org.jfree.data.xyz.XYZSeriesCollection.java
/** * Returns the z-value for one item in a series. * /*from ww w . j av a2s . com*/ * @param seriesIndex the series index. * @param itemIndex the item index. * * @return The z-value. */ @Override public double getZValue(int seriesIndex, int itemIndex) { XYZSeries s = this.series.get(seriesIndex); return s.getZValue(itemIndex); }