| Modifier and Type | Method and Description |
|---|---|
void |
add(IRange source)
Adds one or more new series to the
ISeriesCollection collection. |
void |
add(IRange source,
RowCol rowCol)
Adds one or more new series to the
ISeriesCollection collection. |
void |
add(IRange source,
RowCol rowCol,
boolean seriesLabels,
boolean categoryLabels)
Adds one or more new series to the
ISeriesCollection collection. |
void |
extend(IRange source,
RowCol rowcol,
boolean categoryLabels)
Adds new data points to an existing series collection.
|
ISeries |
get(int index)
Returns a single object from a collection.
|
ISeries |
get(java.lang.String name)
Returns a single object from a collection.
|
int |
getCount()
Returns the number of objects in the collection.
|
IChart |
getParent()
Returns the parent object for the specified object.
|
ISeries |
newSeries()
Creates a new series.
|
IChart getParent()
int getCount()
void add(IRange source)
ISeriesCollection collection.
Spread will determine where the values are by the size and orientation of the
selected range.source - The new data, a Range object.void add(IRange source, RowCol rowCol)
ISeriesCollection collection.source - The new data, a Range object.rowCol - Specifies whether the new values are in the rows or columns of the
given range source. Can be one of the following RowCol
constants: Rows or Columns.void add(IRange source, RowCol rowCol, boolean seriesLabels, boolean categoryLabels)
ISeriesCollection collection.source - The new data, either as a Range object or an array of data points.rowCol - Specifies whether the new values are in the rows or columns of the
specified range.seriesLabels - True if the first row or column contains the name of the data
series. False if the first row or column contains the first data
point of the series.categoryLabels - True if the first row or column contains the name of the category
labels. False if the first row or column contains the first data
point of the series.void extend(IRange source, RowCol rowcol, boolean categoryLabels)
source - The new data to be added to the ISeriesCollection objectrowcol - Specifies whether the new values are in the rows or columns of the
given range source. Can be one of the RowCol constants:
Rows or Columns.categoryLabels - True to have the first row or column contain the name of the
category labels. False to have the first row or column contain the
first data point of the series.ISeries get(int index)
index - The index number for the object.ISeries get(java.lang.String name)
name - The name for the object.