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

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

Introduction

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

The text is from its open source code.

Implementation

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

Method

voidaddChangeListener(DatasetChangeListener listener)
Registers an object for notification of changes to the dataset.
DomainOrdergetDomainOrder()
Returns the order of the domain (or X) values returned by the dataset.
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.
intindexOf(Comparable seriesKey)
Returns the index of the series with the specified key, or -1 if there is no such series in the dataset.
voidremoveChangeListener(DatasetChangeListener listener)
Deregisters an object for notification of changes to the dataset.