IChartCircleExInfo.Background

Syntax

Background: IChartBackgroundInfo;

Description

The Background property determines parameters for the fill of a merged series group.

Example

Executing the example requires a regular report sheet with a chart on it.

Sub UserProc;
Var
    C: IChart;
    CircleEx: IChartCircleExInfo;
    Color: IGxColor;
Begin
    C := (PrxReport.ActiveReport.ActiveSheet.Table.Objects.Item(0).Extension As IChart);
    C.Type := ChartType.SecondaryBars;
    CircleEx := C.CircleInfoEx;
    CircleEx.Background.Color := GxColor.FromName("Pink");
    PrxReport.ActiveReport.ActiveSheet.Recalc;
End Sub UserProc;

After executing the example the color of the merged group of series is changed to pink:

See also:

IChartCircleExInfo