Caption: IChartCaption;
The Caption property determines parameters of a chart caption.
Use the ICharCaption interface to work with available parameters.
This example assumes that there is the Chart object of the IChart type.
Sub Caption;
Var
Chart: IChart;
Begin
Chart.Caption.FontColor := New GxColor.CreateARGB(255, 255, 0, 0);
End Sub Caption;
After executing the example the font of the caption text is changed to red.
See also: