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 ChartViewSelectedPointChangedEventArgs class.
Declaration
public ChartViewSelectedPointChangedEventArgs(DataPoint oldSelectedPoint, DataPoint newSelectedPoint, ChartSeries oldSelectedSeries, ChartSeries newSelectedSeries, ChartSelectionMode selectionMode)
Parameters
DataPoint
oldSelectedPoint
The old selected point. |
DataPoint
newSelectedPoint
The new selected point. |
ChartSeries
oldSelectedSeries
The old selected series. |
ChartSeries
newSelectedSeries
The new selected series. |
ChartSelectionMode
selectionMode
The selection mode. |
Properties
NewSelectedPoint
Gets the new selected data point.
Declaration
public DataPoint NewSelectedPoint { get; }
Property Value
DataPoint
|
NewSelectedSeries
Gets the new selected data point chart series.
Declaration
public ChartSeries NewSelectedSeries { get; }
Property Value
ChartSeries
|
OldSelectedPoint
Gets the selected data point.
Declaration
public DataPoint OldSelectedPoint { get; }
Property Value
DataPoint
|
OldSelectedSeries
Gets the selected data point chart series.
Declaration
public ChartSeries OldSelectedSeries { get; }
Property Value
ChartSeries
|
SelectionMode
Gets the current selection mode
Declaration
public ChartSelectionMode SelectionMode { get; }
Property Value
ChartSelectionMode
|