Interface IChartShapes
Represents a collection of embedded charts.
Namespace: Syncfusion.XlsIO
Assembly: Syncfusion.XlsIO.NET.dll
Syntax
public interface IChartShapes : IEnumerable, IParentApplication
Properties
Count
Returns the number of objects in the collection. Read-only Long.
Declaration
int Count { get; }
Property Value
Type |
---|
System.Int32 |
Item[Int32]
Returns a single Chart object from a Charts collection.
Declaration
IChartShape this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index |
Property Value
Type |
---|
IChartShape |
Item[String]
Returns a single Chart object from the Charts collection.
Declaration
IChartShape this[string name] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.String | name | Chart name |
Property Value
Type | Description |
---|---|
IChartShape | IChartShape object |
Methods
Add()
Creates a new chart.
Declaration
IChartShape Add()
Returns
Type | Description |
---|---|
IChartShape | Newly created chart object. |
RemoveAt(Int32)
Removes Chart object from the collection.
Declaration
void RemoveAt(int index)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | Index of the chart to remove. |