Class ChartViewSelectedPointChangedEventArgs
Provides data for the SelectedPointChanged event
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.ChartView.dll
Syntax
public class ChartViewSelectedPointChangedEventArgs : EventArgs
Constructors
ChartViewSelectedPointChangedEventArgs(DataPoint, DataPoint, ChartSeries, ChartSeries, ChartSelectionMode)
Initializes a new instance of the Chart
Declaration
public ChartViewSelectedPointChangedEventArgs(DataPoint oldSelectedPoint, DataPoint newSelectedPoint, ChartSeries oldSelectedSeries, ChartSeries newSelectedSeries, ChartSelectionMode selectionMode)
Parameters
Data The old selected point. |
Data The new selected point. |
Chart The old selected series. |
Chart The new selected series. |
Chart The selection mode. |
Properties
NewSelectedPoint
Gets the new selected data point.
Declaration
public DataPoint NewSelectedPoint { get; }
Property Value
NewSelectedSeries
Gets the new selected data point chart series.
Declaration
public ChartSeries NewSelectedSeries { get; }
Property Value
OldSelectedPoint
Gets the selected data point.
Declaration
public DataPoint OldSelectedPoint { get; }
Property Value
OldSelectedSeries
Gets the selected data point chart series.
Declaration
public ChartSeries OldSelectedSeries { get; }
Property Value
SelectionMode
Gets the current selection mode
Declaration
public ChartSelectionMode SelectionMode { get; }