TiPlotChannel.AddXEmpty

TiPlotChannel

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

function AddXEmpty(X : Double) : Integer;

Description

Call the AddXEmpty method to add a data point to the channel while also setting the X & Y value and returns a data point index value. The x value will be set to the X parameter and the y value will be set to empty.

Example

Delphi

Value := iComponent.Channel[0].AddXEmpty(2.56);

C++ Builder

Value = iComponent->Channel[0]->AddXEmpty(2.56);

Contents | Index | Previous | Next