Class
ChartBehaviorCollection

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: ICollectionICollection<ChartBehavior>IEnumerableIEnumerable<ChartBehavior>IListIList<ChartBehavior>IReadOnlyCollection<ChartBehavior>IReadOnlyList<ChartBehavior>

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

Methods

ClearItems()

Removes all behaviors from RadChart.

Declaration

cs-api-definition
protected override void ClearItems()

Overrides Collection<ChartBehavior>.ClearItems()

InsertItem(int, ChartBehavior)

Inserts a behavior at the specified index.

Declaration

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

Parameters

index

int

The index at which to insert the behavior.

item

ChartBehavior

The behavior to insert.

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

RemoveItem(int)

Removes a behavior at the specified index.

Declaration

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

Parameters

index

int

The index at which a behavior will be removed.

Overrides Collection<ChartBehavior>.RemoveItem(int)

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

int

The index of the behavior to replace.

item

ChartBehavior

The new behavior.

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