TiPlotChannelCustom.XAxisName

TiPlotChannelCustom See Also

Specifies the name of the x-axis used for plotting the channel x data against.

property XAxisName : String;

Description

Use XAxisName to get or set the name of the x-axis used for plotting the channel x data. If the XAxisName is not a valid x-axis name, the channel data will not be drawn.

Example

Delphi

iComponent.Channel[0].XAxisName := 'X-Axis 1';

iComponent.Channel[0].XAxisName := iComponent.XAxis[0].Name;

C++ Builder

iComponent->Channel[0]->XAxisName = "X-Axis 1";

iComponent->Channel[0]->XAxisName = iComponent->XAxis[0]->Name';

Contents | Index | Previous | Next