UiChart.OnSetDataValue

Syntax

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

Begin

//set of operators

End Sub OnSetDataValue;

Parameters

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

The Args parameter allows to define event parameters.

Description

The OnSetDataValue event occurs when the value of the series point on the chart 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