Class DataPoint3DCollection<T>
Represents a typed data point collection.
Inheritance
Namespace: Telerik.Charting
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
public class DataPoint3DCollection<T> : Collection<T>, IList<DataPoint3D>, ICollection<DataPoint3D>, IEnumerable<DataPoint3D>, IDataPointCollection, IEnumerable, IEnumerable<IDataPoint>, ITrackableCollection where T : DataPoint3D
Type Parameters
T
The data point type. |
Constructors
DataPoint3DCollection()
Declaration
public DataPoint3DCollection()
Methods
ClearItems()
Removes all items from the collection.
Declaration
protected override void ClearItems()
InsertItem(Int32, T)
Inserts the item at the specified index.
Declaration
protected override void InsertItem(int index, T item)
Parameters
System.Int32
index
The index at which insertion should happen. |
T
item
The item to be inserted. |
RemoveItem(Int32)
Removes the item at the specified index.
Declaration
protected override void RemoveItem(int index)
Parameters
System.Int32
index
The index at which removal should happen. |
SetItem(Int32, T)
Replaces the element at the specified index.
Declaration
protected override void SetItem(int index, T item)
Parameters
System.Int32
index
The zero-based index of the element to replace. |
T
item
The new value for the element at the specified index. |