TiPlotChannel.AddYElapsedSeconds
TiPlotChannel See Also
Used to add a data point to the channel while also setting the X & Y value.
function AddYElapsedSeconds(X : Double) : Integer;
Description
Call the AddYElapsedSeconds 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 seconds using the ElapsedStartTime property value.
Example
Delphi
Value := iComponent.Channel[0].AddYElapsedSeconds(25.1);
C++ Builder
Value = iComponent->Channel[0]->AddYElapsedSeconds(25.1);
Contents | Index | Previous | Next