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

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

Introduction

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

The text is from its open source code.

Constructor

DefaultTableXYDataset()
Creates a new empty dataset.
DefaultTableXYDataset(boolean autoPrune)
Creates a new empty dataset.

Method

voidaddSeries(XYSeries series)
Adds a series to the collection and sends a DatasetChangeEvent to all registered listeners.
Objectclone()
Returns an independent copy of this dataset.
booleanequals(Object obj)
Tests this collection for equality with an arbitrary object.
ClassgetClass()
Returns the runtime class of this Object .
doublegetEndXValue(int series, int item)
Returns the end x-value (as a double primitive) for an item within a series.
intgetItemCount()
Returns the number of x values in the dataset.
XYSeriesgetSeries(int series)
Returns a series.
intgetSeriesCount()
Returns the number of series in the collection.
ComparablegetSeriesKey(int series)
Returns the key for a series.
doublegetStartXValue(int series, int item)
Returns the start x-value (as a double primitive) for an item within a series.
NumbergetX(int series, int item)
Returns the x-value for the specified series and item.
doublegetXValue(int series, int item)
Returns the x-value (as a double primitive) for an item within a series.
NumbergetY(int series, int index)
Returns the y-value for the specified series and item.
voidprune()
Removes all x-values for which all the y-values are null.
voidremoveAllSeries()
Removes all the series from the collection and sends a DatasetChangeEvent to all registered listeners.
voidremoveAllValuesForX(Number x)
Removes the items from all series for a given x value.
voidremoveSeries(XYSeries series)
Removes a series from the collection and sends a DatasetChangeEvent to all registered listeners.
voidremoveSeries(int series)
Removes a series from the collection and sends a DatasetChangeEvent to all registered listeners.
voidsetAutoWidth(boolean b)
Sets the flag that indicates whether the interval width is automatically calculated or not.
voidupdateXPoints()
Updates the x-values for all the series in the dataset.