New to Telerik ReportingStart a free 30-day trial

Series items collection

Definition

Namespace:Telerik.Reporting.Charting

Assembly:Telerik.Reporting.dll

Syntax:

C#
public class ChartSeriesItemsCollection : ChartingStateManagedCollection<ChartSeriesItem>, IChartingStateManager

Inheritance: objectChartingStateManagedCollection<ChartSeriesItem>ChartSeriesItemsCollection

Implements: IChartingStateManager

Inherited Members ChartingStateManagedCollection<ChartSeriesItem>.IndexOf(ChartSeriesItem)ChartingStateManagedCollection<ChartSeriesItem>.Insert(int, ChartSeriesItem)ChartingStateManagedCollection<ChartSeriesItem>.RemoveAt(int)ChartingStateManagedCollection<ChartSeriesItem>.AddRange(ChartSeriesItem[])ChartingStateManagedCollection<ChartSeriesItem>.Clear()ChartingStateManagedCollection<ChartSeriesItem>.Contains(ChartSeriesItem)ChartingStateManagedCollection<ChartSeriesItem>.CopyTo(ChartSeriesItem[], int)ChartingStateManagedCollection<ChartSeriesItem>.Remove(ChartSeriesItem)ChartingStateManagedCollection<ChartSeriesItem>.GetEnumerator()ChartingStateManagedCollection<ChartSeriesItem>.SaveViewState()ChartingStateManagedCollection<ChartSeriesItem>.SetItemDirty(ChartSeriesItem)ChartingStateManagedCollection<ChartSeriesItem>.OnInsert(int, object)ChartingStateManagedCollection<ChartSeriesItem>.OnInsertComplete(int, object)ChartingStateManagedCollection<ChartSeriesItem>.OnRemove(int, object)ChartingStateManagedCollection<ChartSeriesItem>.OnRemoveComplete(int, object)ChartingStateManagedCollection<ChartSeriesItem>.OnClear()ChartingStateManagedCollection<ChartSeriesItem>.OnClearComplete()ChartingStateManagedCollection<ChartSeriesItem>.ListChartingStateManagedCollection<ChartSeriesItem>.CountChartingStateManagedCollection<ChartSeriesItem>.IsReadOnly...

Constructors

Creates a new instance of the ChartSeriesItemsCollection class.

C#
public ChartSeriesItemsCollection()

Creates a new instance of the ChartSeriesItemsCollection class.

C#
public ChartSeriesItemsCollection(ChartSeries parent)
Parameters:parentChartSeries

Parent of the collection

Properties

Parent element

C#
[Browsable(false)]
public ChartSeries Parent { get; set; }

Gets or sets a Item at the specific position in Items collection.

C#
[Browsable(false)]
public override ChartSeriesItem this[int index] { get; set; }
Parameters:indexint

Position in the collection

Property Value:

Item at the specific position

Overrides: ChartingStateManagedCollection<ChartSeriesItem>.this[int]

Methods

Add Item at the collection

C#
public override void Add(ChartSeriesItem chartSeriesItem)
Parameters:chartSeriesItemChartSeriesItem

Item to add

Overrides: ChartingStateManagedCollection<ChartSeriesItem>.Add(ChartSeriesItem)

Adds a collection of series items to the items collection.

C#
public void AddRange(ChartSeriesItemsCollection chartSeriesItems)
Parameters:chartSeriesItemsChartSeriesItemsCollection

Items to add

Load ViewState data

C#
protected override void LoadViewState(object state)
Parameters:stateobject

ViewState with data

Overrides: ChartingStateManagedCollection<ChartSeriesItem>.LoadViewState(object)