New to Telerik UI for WPFStart a free 30-day trial

Provides data for the SelectionChanged event.

Definition

Namespace:Telerik.Windows.Controls.ChartView

Assembly:Telerik.Windows.Controls.Chart.dll

Syntax:

C#
public class ChartSelectionChangedEventArgs : EventArgs

Inheritance: objectEventArgsChartSelectionChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the ChartSelectionChangedEventArgs class.

C#
public ChartSelectionChangedEventArgs(IList<DataPoint> addedPoints, IList<DataPoint> removedPoints)
Parameters:addedPointsIList<DataPoint>

The added points.

removedPointsIList<DataPoint>

The removed points.

Properties

Gets a list that contains the points that were selected.

C#
public IList<DataPoint> AddedPoints { get; }

Gets a list that contains the points that were unselected.

C#
public IList<DataPoint> RemovedPoints { get; }