Represents a strongly typed collection of ChartElementPresenter instances.
Definition
Namespace:Telerik.Windows.Controls.ChartView
Assembly:Telerik.Windows.Controls.Chart.dll
Type Parameters:
T
Must be ChartElementPresenter.
Syntax:
C#
public class PresenterCollection<T> : Collection<T>, IList<T>, ICollection<T>, IList, ICollection, IReadOnlyList<T>, IReadOnlyCollection<T>, IEnumerable<T>, IEnumerable where T : ChartElementPresenter
Inheritance: objectCollection<T>PresenterCollection<T>
Implements:
Inherited Members
Methods
Removes all elements from the Collection<T>.
C#
protected override void ClearItems()
Overrides:
Inserts an element into the collection at the specified index.
Removes the element at the specified index of the collection.
Replaces the element at the specified index.
C#
protected override void SetItem(int index, T item)
The zero-based index of the element to replace.
itemTThe new value for the element at the specified index. The value can be null for reference types.
Exceptions:index is less than zero.
-or-
index is greater than Count.
Overrides: