TiPlotComponent.YAxis

TiPlotComponent See Also

Used to access a specific Y-Axis object.

property YAxis[Index : Integer] : TiPlotYAxis;

Description

Use YAxis to access a specific Y-Axis object. The index value is zero based and must be less than the YAxisCount. To add a YAxis , use the AddYAxis method. To delete a YAxis , use the DeleteYAxis method. To remove all Y-Axes , use the RemoveAllYAxes method.

Example

Delphi

iComponent.YAxis[0].Title := 'Y-Axis 1';

C++ Builder

iComponent->YAxis[0]->Title = "Y-Axis 1";

Note: Index is zero based.

Contents | Index | Previous | Next