PointsName(PointNo: Integer): String;
PointNo. Sequence number of a graph point.
The PointName property returns name of a graph point. The property is read-only.
This example assumes that there is the Chart object of the IChart type.
Sub PointName;
Var
Chart : IChart;
Name : String;
Begin
Name := Chart.PointsName(0);
End Sub PointName;
After executing the example the Name variable contains the name of the first point of the graph.
See also: