Class ChartSelectionChangedEventArgs
Provides data for the SelectionChanged event.
Inheritance
Namespace: Telerik.Windows.Controls.Charting
Assembly: Telerik.Windows.Controls.Charting.dll
Syntax
public class ChartSelectionChangedEventArgs : EventArgs
Constructors
ChartSelectionChangedEventArgs(IList<DataPoint>, IList<DataPoint>, IList<DataSeries>, IList<DataSeries>)
Initializes a new instance of the ChartSelectionChangedEventArgs class.
Declaration
public ChartSelectionChangedEventArgs(IList<DataPoint> addedItems, IList<DataPoint> removedItems, IList<DataSeries> addedSeries, IList<DataSeries> removedSeries)
Parameters
System.Collections.Generic.IList<DataPoint>
addedItems
The added items. |
System.Collections.Generic.IList<DataPoint>
removedItems
The removed items. |
System.Collections.Generic.IList<DataSeries>
addedSeries
The added series. |
System.Collections.Generic.IList<DataSeries>
removedSeries
The removed series. |
Properties
AddedItems
Gets a list that contains the items that were selected.
Declaration
public IList<DataPoint> AddedItems { get; }
Property Value
System.Collections.Generic.IList<DataPoint>
The added items. |
AddedSeries
Gets a list that contains the series that were selected.
Declaration
public IList<DataSeries> AddedSeries { get; }
Property Value
System.Collections.Generic.IList<DataSeries>
The added series. |
RemovedItems
Gets a list that contains the items that were unselected.
Declaration
public IList<DataPoint> RemovedItems { get; }
Property Value
System.Collections.Generic.IList<DataPoint>
The removed items. |
RemovedSeries
Gets a list that contains the series that were unselected.
Declaration
public IList<DataSeries> RemovedSeries { get; }
Property Value
System.Collections.Generic.IList<DataSeries>
The removed series. |