AxisY: IChartAxis;
The AxisY property enables the user to determine various parameters of the Y axis on a chart.
Use the IChartAxis interface to work with available parameters.
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: