ClassDataPoint3DCollection<T>
Represents a typed data point collection.
Definition
Namespace:Telerik.Charting
Assembly:Telerik.Windows.Controls.Chart.dll
Type Parameters:
T
The data point type.
Syntax:
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
DataPoint3DCollection()
Declaration
public DataPoint3DCollection()
Methods
ClearItems()
Removes all items from the collection.
Declaration
protected override void ClearItems()
Overrides
InsertItem(int, T)
Inserts the item at the specified index.
Declaration
protected override void InsertItem(int index, T item)
Parameters
index
The index at which insertion should happen.
item
T
The item to be inserted.
Overrides
RemoveItem(int)
Removes the item at the specified index.
Declaration
protected override void RemoveItem(int index)
Parameters
index
The index at which removal should happen.
Overrides
SetItem(int, T)
Replaces the element at the specified index.
Declaration
protected override void SetItem(int index, T item)
Parameters
index
The zero-based index of the element to replace.
item
T
The new value for the element at the specified index.
Overrides