Class TextNeededEventArgs
Inheritance
System.Object
System.EventArgs
TextNeededEventArgs
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 TextNeededEventArgs : EventArgs
Constructors
TextNeededEventArgs(TrackballInfoElement, List<DataPointInfo>, String)
Initializes a new instance of the TextNeededEventArgs class.
Declaration
public TextNeededEventArgs(TrackballInfoElement element, List<DataPointInfo> points, string text)
Parameters
TrackballInfoElement
element
The element. |
System.Collections.Generic.List<DataPointInfo>
points
The points. |
System.String
text
The text. |
Properties
Element
Gets the trackball info element.
Declaration
public TrackballInfoElement Element { get; }
Property Value
TrackballInfoElement
|
Points
Gets the points on which the trackball will move next.
Declaration
public List<DataPointInfo> Points { get; }
Property Value
System.Collections.Generic.List<DataPointInfo>
|
Text
Gets or sets the text to be displayed on the trackball info element.
Declaration
public string Text { get; set; }
Property Value
System.String
|