Class ChartSelectionChangedEventArgs
Provides data for the chart SelectionChanged event.
Inheritance
System.Object
ChartSelectionChangedEventArgs
Namespace: Syncfusion.Maui.Charts
Assembly: Syncfusion.Maui.Charts.dll
Syntax
public class ChartSelectionChangedEventArgs : EventArgs
Remarks
This class contains information about the new and old selected items.
Constructors
ChartSelectionChangedEventArgs()
Initializes a new instance of the ChartSelectionChangedEventArgs class.
Declaration
public ChartSelectionChangedEventArgs()
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> |