Java org.jfree.data.xy XYZDataset fields, constructors, methods, implement or subclass

Example usage for Java org.jfree.data.xy XYZDataset fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.jfree.data.xy XYZDataset.

The text is from its open source code.

Implementation

org.jfree.data.xy.XYZDataset has the following implementations.
Click this link to see all its implementation.

Constructor

Method

intgetItemCount(int series)
Returns the number of items in a series.
intgetSeriesCount()
Returns the number of series in the dataset.
ComparablegetSeriesKey(int series)
Returns the key for a series.
NumbergetX(int series, int item)
Returns the x-value for an item within a series.
doublegetXValue(int series, int item)
Returns the x-value for an item within a series.
NumbergetY(int series, int item)
Returns the y-value for an item within a series.
doublegetYValue(int series, int item)
Returns the y-value (as a double primitive) for an item within a series.
NumbergetZ(int series, int item)
Returns the z-value for the specified series and item.
doublegetZValue(int series, int item)
Returns the z-value (as a double primitive) for an item within a series.
intindexOf(Comparable seriesKey)
Returns the index of the series with the specified key, or -1 if there is no such series in the dataset.