IUiChartPointNameEventArgs.Result

Syntax

Result: String;

Description

Use the Result property enables the user to determine names of graph points.

Example

Sub UiChartOnGetPointName(Sender: Object; Args: IUiChartPointNameEventArgs);

Begin

Args.Result := "point " + Args.PointIndex.ToString;

End Sub UiChartOnGetPointName;

After executing the example names of graph points are changed: point 0, point 1, and so on.

See also:

IUiChartPointNameEventArgs | UiChart.OnGetPointName