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

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.ChartView.dll

Syntax:

C#
public class ChartDataPointCollection : NotifyCollection<DataPoint>, IList, ICollection, IEnumerable, INotifyCollectionChanged, INotifyPropertyChanged

Inheritance: objectCollection<DataPoint>NotifyCollection<DataPoint>ChartDataPointCollection

Implements: ICollectionIEnumerableIListINotifyCollectionChangedINotifyPropertyChanged

Inherited Members NotifyCollection<DataPoint>.EmptyNotifyCollection<DataPoint>.Move(int, int)NotifyCollection<DataPoint>.AddRange(params DataPoint[])NotifyCollection<DataPoint>.AddRange(IEnumerable<DataPoint>)NotifyCollection<DataPoint>.BeginUpdate()NotifyCollection<DataPoint>.EndUpdate()NotifyCollection<DataPoint>.DeferRefresh()NotifyCollection<DataPoint>.SetItem(int, DataPoint)NotifyCollection<DataPoint>.RemoveItem(int)NotifyCollection<DataPoint>.ClearItems()NotifyCollection<DataPoint>.MoveItem(int, int)NotifyCollection<DataPoint>.CreateEventArguments(NotifyCollectionChangedAction)NotifyCollection<DataPoint>.CreateEventArguments(NotifyCollectionChangedAction, object, int)NotifyCollection<DataPoint>.CreateEventArguments(NotifyCollectionChangedAction, object, object, int)NotifyCollection<DataPoint>.OnCollectionChanged(NotifyCollectionChangedEventArgs)NotifyCollection<DataPoint>.OnPropertyChanged(PropertyChangedEventArgs)NotifyCollection<DataPoint>.OnPropertyChanged(string)NotifyCollection<DataPoint>.VersionNotifyCollection<DataPoint>.SuspendedNotifyCollection<DataPoint>.CollectionChangedNotifyCollection<DataPoint>.PropertyChangedCollection<DataPoint>.Add(DataPoint)Collection<DataPoint>.Clear()Collection<DataPoint>.CopyTo(DataPoint[], int)Collection<DataPoint>.Contains(DataPoint)Collection<DataPoint>.GetEnumerator()Collection<DataPoint>.IndexOf(DataPoint)Collection<DataPoint>.Insert(int, DataPoint)Collection<DataPoint>.Remove(DataPoint)Collection<DataPoint>.RemoveAt(int)Collection<DataPoint>.CountCollection<DataPoint>.ItemsCollection<DataPoint>.this[int]...

Constructors

Initializes a new instance of the ChartDataPointCollection class.

C#
public ChartDataPointCollection(ChartSeries owner)
Parameters:ownerChartSeries

The owner.

Properties

Gets the binding source.

C#
public ChartBindingSource BindingSource { get; }
Property Value:

The binding source.

Gets the owner.

C#
public ChartSeries Owner { get; }
Property Value:

The owner.

Methods

C#
public void Add(params double[] value)
Parameters:valuedouble[]

Creates the binding source.

C#
protected virtual ChartBindingSource CreateBindingSource()
Returns:

ChartBindingSource

Ends the update.

C#
public override void EndUpdate(bool notify)
Parameters:notifybool

The notify.

Overrides: NotifyCollection<DataPoint>.EndUpdate(bool)

C#
public void Filter(IDataPointFilter filterInterface)
Parameters:filterInterfaceIDataPointFilter

Finds the specified data bound item.

C#
public int Find(object dataBoundItem)
Parameters:dataBoundItemobject

The data bound item.

Returns:

int

Gets the data point at the specified index.

C#
public T Get<T>(int index) where T : DataPoint
Parameters:indexint

The index.

Returns:

T

Inserts the item.

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

The index.

itemDataPoint

The item.

Overrides: NotifyCollection<DataPoint>.InsertItem(int, DataPoint)

C#
public void Sort(IComparer<DataPoint> comparer)
Parameters:comparerIComparer<DataPoint>