Class ChartSelectionChangingEventArgs
Provides data for the chart SelectionChanging event.
Inheritance
System.Object
ChartSelectionChangingEventArgs
Namespace: Syncfusion.Maui.Charts
Assembly: Syncfusion.Maui.Charts.dll
Syntax
public class ChartSelectionChangingEventArgs : CancelEventArgs
Remarks
This class contains information about the new and old selected items and allows to cancel the selection change.
Constructors
ChartSelectionChangingEventArgs()
Initializes a new instance of the ChartSelectionChangingEventArgs class.
Declaration
public ChartSelectionChangingEventArgs()
Properties
NewIndexes
Gets the indexes of the newly selected items.
Declaration
public List<int> NewIndexes { get; }
Property Value
Type |
---|
System.Collections.Generic.List<System.Int32> |
OldIndexes
Gets the indexes of the previously selected items.
Declaration
public List<int> OldIndexes { get; }
Property Value
Type |
---|
System.Collections.Generic.List<System.Int32> |