New to Telerik UI for WPFStart a free 30-day trial

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

C#
public DataPoint3DCollection()

Methods

Removes all items from the collection.

C#
protected override void ClearItems()

Overrides: Collection<T>.ClearItems()

Inserts the item at the specified index.

C#
protected override void InsertItem(int index, T item)
Parameters:indexint

The index at which insertion should happen.

itemT

The item to be inserted.

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

Removes the item at the specified index.

C#
protected override void RemoveItem(int index)
Parameters:indexint

The index at which removal should happen.

Overrides: Collection<T>.RemoveItem(int)

Replaces the element at the specified index.

C#
protected override void SetItem(int index, T item)
Parameters:indexint

The zero-based index of the element to replace.

itemT

The new value for the element at the specified index.

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