| org.jfree.data.xy.VectorXYDataset
All known Subclasses: org.jfree.data.xy.VectorSeriesCollection,
VectorXYDataset | public interface VectorXYDataset extends XYDataset(Code) | | An extension of the
XYDataset interface that allows a vector to be
defined at a specific (x, y) location.
since: 1.0.6 |
Method Summary | |
public Vector | getVector(int series, int item) Returns the vector for an item in a series. | public double | getVectorXValue(int series, int item) Returns the x-component of the vector for an item in a series.
Parameters: series - the series index. Parameters: item - the item index. | public double | getVectorYValue(int series, int item) Returns the y-component of the vector for an item in a series.
Parameters: series - the series index. Parameters: item - the item index. |
getVectorXValue | public double getVectorXValue(int series, int item)(Code) | | Returns the x-component of the vector for an item in a series.
Parameters: series - the series index. Parameters: item - the item index. The x-component of the vector. |
getVectorYValue | public double getVectorYValue(int series, int item)(Code) | | Returns the y-component of the vector for an item in a series.
Parameters: series - the series index. Parameters: item - the item index. The y-component of the vector. |
|
|