public interface IChartSeriesCollection extends IGenericCollection<IChartSeries>
Represents collection of IChartSeries
| Modifier and Type | Method and Description |
|---|---|
IChartSeries |
add(IChartCellCollection cellsWithSeriesName,
int type)
Creates new chart series from
IChartCellCollection and adds it to the collection. |
IChartSeries |
add(IChartDataCell cellWithSeriesName,
int type)
Creates new chart series from
IChartDataCell and adds it to the collection. |
IChartSeries |
add(int type)
Creates new chart series and adds it to the collection.
|
IChartSeries |
add(java.lang.String name,
int type)
Creates new chart series from value and adds it to the collection.
|
void |
clear()
Removes all elements (including the chart style) from the collection.
|
IChartSeries |
get_Item(int index)
Gets the element at the specified index.
|
int |
indexOf(IChartSeries value)
Searches for the specified
IChartSeries and returns the zero-based index of the first occurrence within the entire Collection |
IChartSeries |
insert(int index,
int type)
Creates new chart series and inserts it into the collection.
|
void |
remove(IChartSeries value)
Removes the specified value.
|
void |
removeAt(int index)
Removes the element at the specified index
|
iteratorJavaiteratorIChartSeries get_Item(int index)
Gets the element at the specified index.
com.aspose.ms.System.ArgumentOutOfRangeException - index is not a valid index in the IList.IChartSeries add(int type)
Creates new chart series and adds it to the collection.
type - Type of seriesIChartSeries insert(int index, int type)
Creates new chart series and inserts it into the collection.
index - Index for insertion inttype - Chart type ChartTypeIChartSeriesIChartSeries add(IChartDataCell cellWithSeriesName, int type)
Creates new chart series from IChartDataCell and adds it to the collection.
cellWithSeriesName - Cell which contain series name.type - Type set type of series
IChartSeries add(IChartCellCollection cellsWithSeriesName, int type)
Creates new chart series from IChartCellCollection and adds it to the collection.
cellsWithSeriesName - Cells which contain series name.type - Type set type of series
IChartSeries add(java.lang.String name, int type)
Creates new chart series from value and adds it to the collection.
name - Series name.type - Type set type of seriesint indexOf(IChartSeries value)
Searches for the specified IChartSeries and returns the zero-based index of the first occurrence within the entire Collection
value - Chart series value.void remove(IChartSeries value)
Removes the specified value.
value - The value.com.aspose.ms.System.ArgumentException - The value parameter was not found in the collection.void removeAt(int index)
Removes the element at the specified index
index - Index intvoid clear()
Removes all elements (including the chart style) from the collection.
Copyright © 2004-2025 Aspose Pty Ltd. All Rights Reserved.