Class ChartViewSelectedPointChangingEventArgs
Provides data for the SelectedPointChanging event
Inheritance
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.ChartView.dll
Syntax
public class ChartViewSelectedPointChangingEventArgs : CancelEventArgs
Constructors
ChartViewSelectedPointChangingEventArgs(DataPoint, DataPoint, ChartSeries, ChartSeries, ChartSelectionMode)
Initializes a new instance of the Chart
Declaration
public ChartViewSelectedPointChangingEventArgs(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. |
ChartViewSelectedPointChangingEventArgs(DataPoint, DataPoint, ChartSeries, ChartSeries, ChartSelectionMode, Boolean)
Initializes a new instance of the Chart
Declaration
public ChartViewSelectedPointChangingEventArgs(DataPoint oldSelectedPoint, DataPoint newSelectedPoint, ChartSeries oldSelectedSeries, ChartSeries newSelectedSeries, ChartSelectionMode selectionMode, bool cancel)
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. |
System. The cancel. |
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; }