IChart.Caption

Syntax

Caption: IChartCaption;

Description

The Caption property determines parameters of a chart caption.

Comments

Use the ICharCaption interface to work with available parameters.

Example

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(25525500);
End Sub Caption;

After executing the example the font of the caption text is changed to red.

See also:

IChart