ChartSeriesCollection

ChartSeriesCollection class

Represents collection of ChartSeries

public class ChartSeriesCollection : DomObject<ChartData>, IChartSeriesCollection

Properties

NameDescription
Count { get; }Returns a number of objects in the collection. Read-only Int32.
IsSynchronized { get; }Returns a value indicating whether access to the collection is synchronized (thread-safe). Read-only Boolean.
Item { get; }Gets the element at the specified index.
SyncRoot { get; }Returns a synchronization root. Read-only Object.

Methods

NameDescription
Add(ChartType)Creates new chart series and adds it to the collection.
Add(IChartCellCollection, ChartType)Creates new chart series from ChartCellCollection and adds it to the collection.
Add(IChartDataCell, ChartType)Creates new chart series from ChartDataCell and adds it to the collection.
Add(string, ChartType)Creates new chart series from value and adds it to the collection.
Clear()Removes all controls from the collection.
CopyTo(Array, int)Copies the entire collection to the specified array.
GetEnumerator()Returns an enumerator that iterates through the collection.
IndexOf(IChartSeries)Searches for the specified ChartSeries and returns the zero-based index of the first occurrence within the entire Collection
Insert(int, ChartType)Creates new chart series and inserts it into the collection.
Remove(IChartSeries)Removes the specified value.
RemoveAt(int)Removes an ActiveX control stored at specified position from the collection.

See Also