IChart.AxisY

Syntax

AxisY: IChartAxis;

Description

The AxisY property enables the user to determine various parameters of the Y axis on a chart.

Comments

Use the IChartAxis interface to work with available parameters.

Example

This example assumes that there is the Chart object of the IChart type.

Sub Axis;
Var
    Chart: IChart;
Begin
    Chart.AxisY.FontColor := GxColor.FromName("Red");
End Sub Axis;

After executing the example the font of text along the Y axis is changed to red.

See also:

IChart