IUiChartSetDataValueEventArgs.Value

Syntax

Value: Double;

Description

The Value property determines a series point value.

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:

IUiChartSetDataValueEventArgs