Class ChartSelectionChangedEventArgs
Provides data for the SelectionChanged event.
Inheritance
System.Object
ChartSelectionChangedEventArgs
Namespace: Telerik.Windows.Controls.ChartView
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
public class ChartSelectionChangedEventArgs : EventArgs
Constructors
ChartSelectionChangedEventArgs(IList<DataPoint>, IList<DataPoint>)
Initializes a new instance of the ChartSelectionChangedEventArgs class.
Declaration
public ChartSelectionChangedEventArgs(IList<DataPoint> addedPoints, IList<DataPoint> removedPoints)
Parameters
System.Collections.Generic.IList<DataPoint>
addedPoints
The added points. |
System.Collections.Generic.IList<DataPoint>
removedPoints
The removed points. |
Properties
AddedPoints
Gets a list that contains the points that were selected.
Declaration
public IList<DataPoint> AddedPoints { get; }
Property Value
System.Collections.Generic.IList<DataPoint>
|
RemovedPoints
Gets a list that contains the points that were unselected.
Declaration
public IList<DataPoint> RemovedPoints { get; }
Property Value
System.Collections.Generic.IList<DataPoint>
|