UiChart.OnSetDataValue

Syntax

Sub OnSetDataValue(Sender: Object; Args: IUiChartSetDataValueEventArgs);

Begin

//set of operators

End Sub OnSetDataValue;

Parameters

Sender - parameter that returns the component that has generated the event.

Args - parameter that enables the user to determine event parameters.

Description

The OnSetDataValue event occurs when the value of the series point on the graph is changed.

Example

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:

UiChart