Class
ChartSelectionChangedEventArgs

Provides data for the SelectionChanged event.

Definition

Namespace:Telerik.Windows.Controls.ChartView

Assembly:Telerik.Windows.Controls.Chart.dll

Syntax:

cs-api-definition
public class ChartSelectionChangedEventArgs : EventArgs

Inheritance: objectEventArgsChartSelectionChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

ChartSelectionChangedEventArgs(IList<DataPoint>, IList<DataPoint>)

Initializes a new instance of the ChartSelectionChangedEventArgs class.

Declaration

cs-api-definition
public ChartSelectionChangedEventArgs(IList<DataPoint> addedPoints, IList<DataPoint> removedPoints)

Parameters

addedPoints

IList<DataPoint>

The added points.

removedPoints

IList<DataPoint>

The removed points.

Properties

AddedPoints

Gets a list that contains the points that were selected.

Declaration

cs-api-definition
public IList<DataPoint> AddedPoints { get; }

Property Value

IList<DataPoint>

RemovedPoints

Gets a list that contains the points that were unselected.

Declaration

cs-api-definition
public IList<DataPoint> RemovedPoints { get; }

Property Value

IList<DataPoint>