TiPlotChannelCustom.AddXY

TiPlotChannelCustom See Also

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

function AddXY(X, Y : Double) : Integer;

Description

Call the AddXY method to add a data point to the channel while also setting the X & Y value. Use the Index value passed by the function to modify properties of individual data points.

Example

Delphi

Value := iComponent.Channel[0].AddXY(2.56, 35.3);

C++ Builder

Value = iComponent->Channel[0]->AddXY(2.56, 35.3);

Contents | Index | Previous | Next