IChartSeriesCollection

IChartSeriesCollection interface

Represents collection of IChartSeries

public interface IChartSeriesCollection : IGenericCollection<IChartSeries>

Properties

NameDescription
Item { get; }Gets the element at the specified index.

Methods

NameDescription
Add(ChartType)Creates new chart series and adds it to the collection.
Add(IChartCellCollection, ChartType)Creates new chart series from IChartCellCollection and adds it to the collection.
Add(IChartDataCell, ChartType)Creates new chart series from IChartDataCell and adds it to the collection.
Add(string, ChartType)Creates new chart series from value and adds it to the collection.
Clear()Removes all elements (including the chart style) from the collection.
IndexOf(IChartSeries)Searches for the specified IChartSeries 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 the element at the specified index

See Also