Class
DataPoint3DCollection<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:

cs-api-definition
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: ICollectionICollection<DataPoint3D>ICollection<T>IEnumerableIEnumerable<DataPoint3D>IEnumerable<IDataPoint>IEnumerable<T>IListIList<DataPoint3D>IList<T>IReadOnlyCollection<T>IReadOnlyList<T>

Inherited Members Collection<T>.Add(T)Collection<T>.Clear()Collection<T>.CopyTo(T[], int)Collection<T>.Contains(T)Collection<T>.GetEnumerator()Collection<T>.IndexOf(T)Collection<T>.Insert(int, T)Collection<T>.Remove(T)Collection<T>.RemoveAt(int)Collection<T>.CountCollection<T>.ItemsCollection<T>.this[int]

Constructors

DataPoint3DCollection()

Declaration

cs-api-definition
public DataPoint3DCollection()

Methods

ClearItems()

Removes all items from the collection.

Declaration

cs-api-definition
protected override void ClearItems()

Overrides Collection<T>.ClearItems()

InsertItem(int, T)

Inserts the item at the specified index.

Declaration

cs-api-definition
protected override void InsertItem(int index, T item)

Parameters

index

int

The index at which insertion should happen.

item

T

The item to be inserted.

Overrides Collection<T>.InsertItem(int, T)

RemoveItem(int)

Removes the item at the specified index.

Declaration

cs-api-definition
protected override void RemoveItem(int index)

Parameters

index

int

The index at which removal should happen.

Overrides Collection<T>.RemoveItem(int)

SetItem(int, T)

Replaces the element at the specified index.

Declaration

cs-api-definition
protected override void SetItem(int index, T item)

Parameters

index

int

The zero-based index of the element to replace.

item

T

The new value for the element at the specified index.

Overrides Collection<T>.SetItem(int, T)