public abstract class SSJXYSeriesCollection
extends java.lang.Object
| Constructor and Description |
|---|
SSJXYSeriesCollection() |
| Modifier and Type | Method and Description |
|---|---|
java.awt.Color |
getColor(int series)
Gets the current plotting color of the selected series.
|
double[] |
getDomainBounds()
Returns domain (x-coordinates) min and max values.
|
double[] |
getRangeBounds()
Returns range (y-coordinates) min and max values.
|
XYItemRenderer |
getRenderer()
Returns the XYItemRenderer object associated with the current object.
|
XYDataset |
getSeriesCollection()
Returns the XYDataset object associated with the current object.
|
double |
getX(int series,
int index)
Returns the x-value at the specified index in the specified series.
|
double |
getY(int series,
int index)
Returns the y-value at the specified index in the specified series.
|
void |
setColor(int series,
java.awt.Color color)
Sets a new plotting color to the series series.
|
void |
setRenderer(XYItemRenderer renderer)
Sets the XYItemRenderer object associated with the current variable.
|
abstract java.lang.String |
toLatex(double XScale,
double YScale,
double XShift,
double YShift,
double xmin,
double xmax,
double ymin,
double ymax)
Formats and returns a string containing a LATEX-compatible source
code which represents this data series collection.
|
java.lang.String |
toString()
Returns in a String all data contained in the current object.
|
public double getX(int series,
int index)
series - required series value.index - value's index.public double getY(int series,
int index)
series - required series value.index - value's index.public XYDataset getSeriesCollection()
public double[] getDomainBounds()
public double[] getRangeBounds()
public java.lang.String toString()
toString in class java.lang.ObjectString.public XYItemRenderer getRenderer()
public void setRenderer(XYItemRenderer renderer)
XYChart.renderer - new XYItemRenderer object.public java.awt.Color getColor(int series)
public void setColor(int series,
java.awt.Color color)
series - series index.color - plotting color.public abstract java.lang.String toLatex(double XScale,
double YScale,
double XShift,
double YShift,
double xmin,
double xmax,
double ymin,
double ymax)
XScale - Domain original data scale.YScale - Range original data scale.XShift - Domain original data shift value.YShift - Range original data shift value.xmin - Domain min bound.xmax - Domain nax bound.ymin - Range min bound.ymax - Range nax bound.To submit a bug or ask questions, send an e-mail to Pierre L'Ecuyer.