Class ChartDataPointsEventArgs
Inheritance
System.Object
System.EventArgs
ChartDataPointsEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.ChartView.dll
Syntax
public class ChartDataPointsEventArgs : EventArgs
Constructors
ChartDataPointsEventArgs(IList<DataPoint>)
Initializes a new instance of the ChartDataPointsEventArgs class.
Declaration
public ChartDataPointsEventArgs(IList<DataPoint> selectedDataPoints)
Parameters
System.Collections.Generic.IList<DataPoint>
selectedDataPoints
The selected data points. |
Properties
SelectedDataPoints
Gets a collection with selected data points.
Declaration
public IList<DataPoint> SelectedDataPoints { get; }
Property Value
System.Collections.Generic.IList<DataPoint>
|