Provides data for the SelectedPointChanging event
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.ChartView.dll
Syntax:
public class ChartViewSelectedPointChangingEventArgs : CancelEventArgs
Inheritance: objectEventArgsCancelEventArgsChartViewSelectedPointChangingEventArgs
Inherited Members
Constructors
Initializes a new instance of the ChartViewSelectedPointChangingEventArgs class.
public ChartViewSelectedPointChangingEventArgs(DataPoint oldSelectedPoint, DataPoint newSelectedPoint, ChartSeries oldSelectedSeries, ChartSeries newSelectedSeries, ChartSelectionMode selectionMode, bool cancel)
The old selected point.
newSelectedPointDataPointThe new selected point.
oldSelectedSeriesChartSeriesThe old selected series.
newSelectedSeriesChartSeriesThe new selected series.
selectionModeChartSelectionModeThe selection mode.
cancelboolThe cancel.
Initializes a new instance of the ChartViewSelectedPointChangingEventArgs class.
public ChartViewSelectedPointChangingEventArgs(DataPoint oldSelectedPoint, DataPoint newSelectedPoint, ChartSeries oldSelectedSeries, ChartSeries newSelectedSeries, ChartSelectionMode selectionMode)
The old selected point.
newSelectedPointDataPointThe new selected point.
oldSelectedSeriesChartSeriesThe old selected series.
newSelectedSeriesChartSeriesThe new selected series.
selectionModeChartSelectionModeThe selection mode.
Properties
Gets the new selected data point.
public DataPoint NewSelectedPoint { get; }
Gets the new selected data point chart series.
public ChartSeries NewSelectedSeries { get; }
Gets the selected data point.
public DataPoint OldSelectedPoint { get; }
Gets the selected data point chart series.
public ChartSeries OldSelectedSeries { get; }
Gets the current selection mode
public ChartSelectionMode SelectionMode { get; }