New to Telerik UI for WinFormsStart a free 30-day trial

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.ChartView.dll

Syntax:

C#
public class TextNeededEventArgs : EventArgs

Inheritance: objectEventArgsTextNeededEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the TextNeededEventArgs class.

C#
public TextNeededEventArgs(TrackballInfoElement element, List<DataPointInfo> points, string text)
Parameters:elementTrackballInfoElement

The element.

pointsList<DataPointInfo>

The points.

textstring

The text.

Properties

Gets the trackball info element.

C#
public TrackballInfoElement Element { get; }

Gets the points on which the trackball will move next.

C#
public List<DataPointInfo> Points { get; }

Gets or sets the text to be displayed on the trackball info element.

C#
public string Text { get; set; }