接口 ISeriesCollection
Represents a collection of all the
ISeries
objects in the specifiedchart.-
方法概要
修饰符和类型方法说明void
Adds one or more new series to theISeriesCollection
collection.Spread will determine where the values are by the size and orientation of the selected range.void
Adds one or more new series to theISeriesCollection
collection.void
Adds one or more new series to theISeriesCollection
collection.void
Adds new data points to an existing series collection.get
(int index) Returns a single object from a collection.Returns a single object from a collection.int
getCount()
Returns the number of objects in the collection.Returns the parent object for the specified object.Creates a new series.从接口继承的方法 java.lang.Iterable
forEach, iterator, spliterator
-
方法详细资料
-
getParent
IChart getParent()Returns the parent object for the specified object. -
getCount
int getCount()Returns the number of objects in the collection. -
add
Adds one or more new series to theISeriesCollection
collection.Spread will determine where the values are by the size and orientation of the selected range.- 参数:
source
- The new data, a Range object.
-
add
Adds one or more new series to theISeriesCollection
collection.- 参数:
source
- The new data, a Range object.rowCol
- Specifies whether the new values are in the rows or columns of thegiven range source. Can be one of the followingRowCol
constants: Rows or Columns.
-
add
Adds one or more new series to theISeriesCollection
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 thespecified range.seriesLabels
- True if the first row or column contains the name of the dataseries. 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 categorylabels. False if the first row or column contains the first data point of the series.
-
extend
Adds new data points to an existing series collection.- 参数:
source
- The new data to be added to theISeriesCollection
objectrowcol
- Specifies whether the new values are in the rows or columns of thegiven range source. Can be one of theRowCol
constants:Rows or Columns.categoryLabels
- True to have the first row or column contain the name of thecategory labels. False to have the first row or column contain the first data point of the series.
-
get
Returns a single object from a collection.- 参数:
index
- The index number for the object.
-
get
Returns a single object from a collection.- 参数:
name
- The name for the object.
-
newSeries
ISeries newSeries()Creates a new series.- 返回:
- Returns the
ISeries
object that represents the new series.
-