TiPlotChannel.AddYElapsedTime

TiPlotChannel See Also

Used to add a data point to the channel while also setting the X & Y value.

function AddYElapsedTime(X : Double) : Integer;

Description

Call the AddYElapsedTime method to add a data point to the channel while also setting the X & Y value. The y value will be set to the Y parameter and the x value will be calculated in DateTime format using the ElapsedStartTime property value.

Example

Delphi

Value := iComponent.Channel[0].AddYElapsedTime(25.1);

C++ Builder

Value = iComponent->Channel[0]->AddYElapsedTime(25.1);

Contents | Index | Previous | Next