Represents a typed data point collection.
Definition
Namespace:Telerik.Charting
Assembly:Telerik.Windows.Controls.Chart.dll
Type Parameters:
T
The data point type.
Syntax:
C#
public class DataPoint3DCollection<T> : Collection<T>, IList<T>, ICollection<T>, IList, ICollection, IReadOnlyList<T>, IReadOnlyCollection<T>, IEnumerable<T>, IList<DataPoint3D>, ICollection<DataPoint3D>, IEnumerable<DataPoint3D>, IEnumerable<IDataPoint>, IEnumerable where T : DataPoint3D
Inheritance: objectCollection<T>DataPoint3DCollection<T>
Implements:
Inherited Members
Constructors
C#
public DataPoint3DCollection()
Methods
Removes all items from the collection.
C#
protected override void ClearItems()
Overrides:
Inserts the item at the specified index.
C#
protected override void InsertItem(int index, T item)
The index at which insertion should happen.
itemTThe item to be inserted.
Overrides:
Removes the item at the specified index.
C#
protected override void RemoveItem(int index)
The index at which removal should happen.
Overrides:
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.
Overrides: