IChartExternLegend.FontColor

Syntax

FontColor: IGxColor;

Description

The FontColor property determines a font color of external chart legend.

Example

Executing the example requires a regular report with the Report identifier. The report includes the following objects: a chart and an external legend.

Sub Main;
Var
    mb: IMetabase;
    rep: IPrxReport;
    legend: IPrxChartLegend;
    chartlegend: IChartExternLegend;
    objects: ITabObjects;
    FColor: IGxColor;
Begin
    mb := MetabaseClass.Active;
    rep := mb.ItemById("OBJ42859").Edit As IPrxReport;
    objects := (rep.ActiveSheet As IprxTable).TabSheet.Objects;
    legend := (objects.Item(1)) As IPrxChartLegend;
    chartlegend := legend As IChartExternLegend;
    chartlegend.AddChart(objects.Item(2As ichart);
    FColor:= New GxColor.CreateARGB(210,120,130,240);
    chartlegend.FontColor:= FColor; 
    (rep As IMetabaseObject).Save;
End Sub Main;

After executing the example the font color of the chart external legend is changed to blue.

See also:

IChartExternLegend