[Expand]
Inherited Methods |
From class
org.jfree.data.xy.AbstractXYDataset
DomainOrder
|
getDomainOrder()
Returns the order of the domain (X) values.
|
double
|
getXValue(int series, int item)
Returns the x-value (as a double primitive) for an item within a series.
|
double
|
getYValue(int series, int item)
Returns the y-value (as a double primitive) for an item within a series.
|
|
From class
org.jfree.data.general.AbstractSeriesDataset
|
From class
org.jfree.data.general.AbstractDataset
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
|
From interface
java.io.ObjectInputValidation
|
From interface
org.jfree.data.general.Dataset
|
From interface
org.jfree.data.general.SeriesChangeListener
|
From interface
org.jfree.data.general.SeriesDataset
abstract
int
|
getSeriesCount()
Returns the number of series in the dataset.
|
abstract
Comparable
|
getSeriesKey(int series)
Returns the key for a series.
|
abstract
int
|
indexOf(Comparable seriesKey)
Returns the index of the series with the specified key, or -1 if there
is no such series in the dataset.
|
|
From interface
org.jfree.data.xy.IntervalXYDataset
abstract
Number
|
getEndX(int series, int item)
Returns the ending X value for the specified series and item.
|
abstract
double
|
getEndXValue(int series, int item)
Returns the end x-value (as a double primitive) for an item within a
series.
|
abstract
Number
|
getEndY(int series, int item)
Returns the ending Y value for the specified series and item.
|
abstract
double
|
getEndYValue(int series, int item)
Returns the end y-value (as a double primitive) for an item within a
series.
|
abstract
Number
|
getStartX(int series, int item)
Returns the starting X value for the specified series and item.
|
abstract
double
|
getStartXValue(int series, int item)
Returns the start x-value (as a double primitive) for an item within a
series.
|
abstract
Number
|
getStartY(int series, int item)
Returns the starting Y value for the specified series and item.
|
abstract
double
|
getStartYValue(int series, int item)
Returns the start y-value (as a double primitive) for an item within a
series.
|
|
From interface
org.jfree.data.xy.XYDataset
abstract
DomainOrder
|
getDomainOrder()
Returns the order of the domain (or X) values returned by the dataset.
|
abstract
int
|
getItemCount(int series)
Returns the number of items in a series.
|
abstract
Number
|
getX(int series, int item)
Returns the x-value for an item within a series.
|
abstract
double
|
getXValue(int series, int item)
Returns the x-value for an item within a series.
|
abstract
Number
|
getY(int series, int item)
Returns the y-value for an item within a series.
|
abstract
double
|
getYValue(int series, int item)
Returns the y-value (as a double primitive) for an item within a series.
|
|