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

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

Introduction

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

The text is from its open source code.

Constructor

DefaultIntervalXYDataset()
Creates a new DefaultIntervalXYDataset instance, initially containing no data.

Method

voidaddSeries(Comparable seriesKey, double[][] data)
Adds a series or if a series with the same key already exists replaces the data for that series, then sends a DatasetChangeEvent to all registered listeners.
Objectclone()
Returns a clone of this dataset.
booleanequals(Object obj)
Tests this DefaultIntervalXYDataset instance for equality with an arbitrary object.
ClassgetClass()
Returns the runtime class of this Object .
doublegetEndXValue(int series, int item)
Returns the ending x-value for an item within a series.
doublegetEndYValue(int series, int item)
Returns the ending y-value for an item within a series.
intgetItemCount(int series)
Returns the number of items in the specified series.
intgetSeriesCount()
Returns the number of series in the dataset.
ComparablegetSeriesKey(int series)
Returns the key for a series.
doublegetStartXValue(int series, int item)
Returns the starting x-value for an item within a series.
doublegetStartYValue(int series, int item)
Returns the starting y-value for an item within a series.
doublegetXValue(int series, int item)
Returns the x-value for an item within a series.
doublegetYValue(int series, int item)
Returns the y-value for an item within a series.
intindexOf(Comparable seriesKey)
Returns the index of the named series, or -1.