TiPlotComponent.XAxis

TiPlotComponent See Also

Used to access a specific X-Axis object.

property
XAxis[Index : Integer] : TiPlotXAxis;

Description

Use XAxis to access a specific X-Axis object. The index value is zero based and must be less than the XAxisCount. To add a XAxis , use the AddXAxis method. To delete a XAxis , use the DeleteXAxis method. To remove all X-Axes , use the RemoveAllXAxes method.

Example

Delphi

iComponent.XAxis[0].Title := 'X-Axis 1';

C++ Builder

iComponent->XAxis[0]->Title = "X-Axis 1";

Note: Index is zero based.

Contents | Index | Previous | Next