ClassAdditionalMeasuresCollection<T>
This collection is used insider RadBulletGraph and contains the additional comparative measures.
Definition
Namespace:Telerik.UI.Xaml.Controls.DataVisualization
Assembly:Telerik.WinUI.Controls.dll
Type Parameters:
T
The type of the measures contained in the collection.
Syntax:
public class AdditionalMeasuresCollection<T> : ObservableCollection<T>, IList<T>, ICollection<T>, IList, ICollection, IReadOnlyList<T>, IReadOnlyCollection<T>, IEnumerable<T>, IEnumerable, INotifyCollectionChanged, INotifyPropertyChanged where T : BulletGraphMeasureBase
Inheritance: objectCollection<T>ObservableCollection<T>AdditionalMeasuresCollection<T>
Implements:
Inherited Members
Methods
ClearItems()
Removes all items from the collection.
Declaration
protected override void ClearItems()
Exceptions
The method is being called in a System.Collections.ObjectModel.ObservableCollection.PropertyChanged or System.Collections.ObjectModel.ObservableCollection.CollectionChanged event handler.
Overrides
InsertItem(int, T)
Inserts an item into the collection at the specified index.
Declaration
protected override void InsertItem(int index, T item)
Parameters
index
The zero-based index at which item should be inserted.
item
T
The object to insert.
Overrides
RemoveItem(int)
Removes the item at the specified index from the collection.
Declaration
protected override void RemoveItem(int index)
Parameters
index
The zero-based index of the item to remove.
Overrides
SetItem(int, T)
Replaces the item at the specified index.
Declaration
protected override void SetItem(int index, T item)
Parameters
index
The zero-based index of the item to replace.
item
T
The new value for the item at the specified index.
Exceptions
The method is being called in a System.Collections.ObjectModel.ObservableCollection.PropertyChanged or System.Collections.ObjectModel.ObservableCollection.CollectionChanged event handler.
Overrides