Sub OnSetDataValue(Sender: Object; Args: IUiChartSetDataValueEventArgs);
Begin
//set of operators
End Sub OnSetDataValue;
The Sender parameter returns the component that has generated the event.
The Args parameter allows to define event parameters.
The OnSetDataValue event occurs when the value of the series point on the chart is changed.
Sub UiChart1OnSetDataValue(Sender: Object; Args: IUiChartSetDataValueEventArgs);
Var
i: Double;
Begin
i := Args.Value;
End Sub UiChart1OnSetDataValue;
After executing the example the "i" variable contains a new value of the series point.
See also: