Sub OnSetDataValue(Sender: Object; Args: IUiChartSetDataValueEventArgs);
Begin
//set of operators
End Sub OnSetDataValue;
Sender - parameter that returns the component that has generated the event.
Args - parameter that enables the user to determine event parameters.
The OnSetDataValue event occurs when the value of the series point on the graph 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: