public interface VectorXYDataset extends XYDataset
XYDataset interface that allows a vector to be
defined at a specific (x, y) location.| Modifier and Type | Method and Description |
|---|---|
Vector |
getVector(int series,
int item)
Returns the vector for an item in a series.
|
double |
getVectorXValue(int series,
int item)
Returns the x-component of the vector for an item in a series.
|
double |
getVectorYValue(int series,
int item)
Returns the y-component of the vector for an item in a series.
|
getDomainOrder, getItemCount, getX, getXValue, getY, getYValuegetSeriesCount, getSeriesKey, indexOfaddChangeListener, getGroup, removeChangeListener, setGroupdouble getVectorXValue(int series, int item)
series - the series index.item - the item index.double getVectorYValue(int series, int item)
series - the series index.item - the item index.Vector getVector(int series, int item)
Vector
instance --- if you are just interested in the x and y components,
use the getVectorXValue(int, int) and
getVectorYValue(int, int) methods instead.series - the series index.item - the item index.null).