Value2: Double;
The Value property is used to specify source data for the OX axis, if the chart type is scatter.
A scattered chart should be used in the example.
Sub UiChartOnGetDataValue(Sender: Object; Args: IUiChartGetDataValueEventArgs);
Begin
Args.Result := True;
Args.Value := Math.Rand;
Args.Value2 := Args.PointIndex + 2;
End Sub UiChartOnGetDataValue;
After executing the example, a chart is built based on the specified number of series and points.
See also: