Class ChartSelectionChangedEventArgs
Represents chart segment selection changed event arguments.
Inheritance
Inherited Members
Namespace: Syncfusion.UI.Xaml.Charts
Assembly: Syncfusion.SfChart.WPF.dll
Syntax
public class ChartSelectionChangedEventArgs : EventArgs
Remarks
It contains information like selected segment and series.
Constructors
ChartSelectionChangedEventArgs()
Declaration
public ChartSelectionChangedEventArgs()
Properties
IsDataPointSelection
Gets a value indicating whether the selection is segment selection or series selection.
Declaration
public bool IsDataPointSelection { get; }
Property Value
Type |
---|
System.Boolean |
IsSelected
Gets a value indicating whether the segment or series is selected.
Declaration
public bool IsSelected { get; }
Property Value
Type |
---|
System.Boolean |
NewPointInfo
Gets the selected segment item value.
Declaration
public object NewPointInfo { get; }
Property Value
Type |
---|
System.Object |
OldPointInfo
Gets the previous selected segment item value.
Declaration
public object OldPointInfo { get; }
Property Value
Type |
---|
System.Object |
PreviousSelectedIndex
Gets the previous index of the segment which had been selected through mouse interaction or SelectedIndex.
Declaration
public int PreviousSelectedIndex { get; }
Property Value
Type |
---|
System.Int32 |
PreviousSelectedSegment
Gets the segment which had been selected through mouse interaction or selected index.
Declaration
public ChartSegment PreviousSelectedSegment { get; }
Property Value
Type |
---|
ChartSegment |
PreviousSelectedSegments
Gets the segments collection which has been selected through rectangle selection or mouse interaction previously.
Declaration
public List<ChartSegment> PreviousSelectedSegments { get; }
Property Value
Type |
---|
System.Collections.Generic.List<ChartSegment> |
PreviousSelectedSeries
Gets the series which had been selected through mouse interaction or selected index.
Declaration
public ChartSeriesBase PreviousSelectedSeries { get; }
Property Value
Type |
---|
ChartSeriesBase |
SelectedIndex
Gets the current index of the segment which has been selected through mouse interaction or selected index.
Declaration
public int SelectedIndex { get; }
Property Value
Type |
---|
System.Int32 |
SelectedSegment
Gets the segment which has been selected through mouse interaction or selected index.
Declaration
public ChartSegment SelectedSegment { get; }
Property Value
Type |
---|
ChartSegment |
SelectedSegments
Gets the segments collection which has been selected through rectangle selection or mouse interaction.
Declaration
public List<ChartSegment> SelectedSegments { get; }
Property Value
Type |
---|
System.Collections.Generic.List<ChartSegment> |
SelectedSeries
Gets the series which has been selected through mouse interaction or selected index.
Declaration
public ChartSeriesBase SelectedSeries { get; }
Property Value
Type |
---|
ChartSeriesBase |
SelectedSeriesCollection
Gets the series collection which has been selected through rectangle selection or mouse interaction.
Declaration
public List<ChartSeriesBase> SelectedSeriesCollection { get; }
Property Value
Type |
---|
System.Collections.Generic.List<ChartSeriesBase> |