Example usage for org.jfree.data.xyz XYZSeries getZValue

List of usage examples for org.jfree.data.xyz XYZSeries getZValue

Introduction

In this page you can find the example usage for org.jfree.data.xyz XYZSeries getZValue.

Prototype

public double getZValue(int itemIndex) 

Source Link

Document

Returns the z-value for the specified item.

Usage

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);
}