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 Chart
Declaration
public ChartSelectionChangedEventArgs(IList<DataPoint> addedPoints, IList<DataPoint> removedPoints)
Parameters
Properties
AddedPoints
Gets a list that contains the points that were selected.
Declaration
public IList<DataPoint> AddedPoints { get; }
Property Value
System.
|
RemovedPoints
Gets a list that contains the points that were unselected.
Declaration
public IList<DataPoint> RemovedPoints { get; }
Property Value
System.
|