TiPlotChannelCustom.RunningXMax

TiPlotChannelCustom

Gets the current max value of all X data points in a channel.

property RunningXMax : Double;

Description

Use RunningXMax to get the current max value of all X data points in a channel.

Important Note: this property will not be updated if you manually modify previous data points. If you modify previous data points and want to reset this RunningXMax value to reflect the changes, call GetXMax to update.

Note
: this property does not take into consideration empty or null data points in its calculations.

Example

Delphi

Value := iComponent.Channel[0].RunningXMax;

C++ Builder

Value = iComponent->Channel[0]->RunningXMax;

Contents | Index | Previous | Next