ClassChartBehaviorCollection
Class
This collection contains the behaviors for RadChart.
Definition
Namespace:Telerik.UI.Xaml.Controls.Chart
Assembly:Telerik.WinUI.Controls.dll
Syntax:
cs-api-definition
public class ChartBehaviorCollection : Collection<ChartBehavior>, IList<ChartBehavior>, ICollection<ChartBehavior>, IList, ICollection, IReadOnlyList<ChartBehavior>, IReadOnlyCollection<ChartBehavior>, IEnumerable<ChartBehavior>, IEnumerable
Inheritance: objectCollection<ChartBehavior>ChartBehaviorCollection
Implements:
Inherited Members
Methods
ClearItems()
Removes all behaviors from RadChart.
Declaration
cs-api-definition
protected override void ClearItems()
Overrides
InsertItem(int, ChartBehavior)
Inserts a behavior at the specified index.
Declaration
cs-api-definition
protected override void InsertItem(int index, ChartBehavior item)
Parameters
index
The index at which to insert the behavior.
item
The behavior to insert.
Overrides
RemoveItem(int)
Removes a behavior at the specified index.
Declaration
cs-api-definition
protected override void RemoveItem(int index)
Parameters
index
The index at which a behavior will be removed.
Overrides
SetItem(int, ChartBehavior)
Replaces a behavior at the specified index with the specified item.
Declaration
cs-api-definition
protected override void SetItem(int index, ChartBehavior item)
Parameters
index
The index of the behavior to replace.
item
The new behavior.
Overrides