add method
add
Creates new chart series and adds it to the collection.
Returns
New chart series.
def add(self, type):
...
Parameter | Type | Description |
---|---|---|
type | ChartType | Type of series |
add
Creates new chart series from IChartDataCell
and adds it to the collection.
Returns
Added chart series or series that already is in collection.
def add(self, cell_with_series_name, type):
...
Parameter | Type | Description |
---|---|---|
cell_with_series_name | IChartDataCell | Cell which contain series name. |
type | ChartType | Type set type of series |
Remarks
If chart series careted from same cell already in collection then method adds nothing and returns it’s index.
add
Creates new chart series from IChartCellCollection
and adds it to the collection.
Returns
Added chart series or series that already is in collection.
def add(self, cells_with_series_name, type):
...
Parameter | Type | Description |
---|---|---|
cells_with_series_name | IChartCellCollection | Cells which contain series name. |
type | ChartType | Type set type of series |
Remarks
If chart series careted from same cell already in collection then method adds nothing and returns it’s index.
add
Creates new chart series from value and adds it to the collection.
Returns
Added chart series.
def add(self, name, type):
...
Parameter | Type | Description |
---|---|---|
name | str | Series name. |
type | ChartType | Type set type of series |
See Also
- enumeration
ChartType
- class
IChartCellCollection
- class
IChartDataCell
- class
IChartSeries
- class
IChartSeriesCollection
- module
aspose.slides.charts
- library
Aspose.Slides