TiPlotChannel.AddXNull
TiPlotChannel See Also
Used to add a data point to the channel while also setting the X & Y value.
function AddXNull(X : Double) : Integer;
Description
Call the AddXNull method to add a data point to the channel while also setting
the X & Y value. The x value will be set to the X parameter and the y value
will be set to null.
Example
Delphi
Value := iComponent.Channel[0].AddXNull(2.56);
C++ Builder
Value = iComponent->Channel[0]->AddXNull(2.56);
Contents | Index | Previous | Next