IChartCircleExInfo.Shadow

Syntax

Shadow: IChartShadow;

Description

The Shadow property determines parameters of primary chart shadow.

Example

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

Sub My;

Var

C: IChart;

CircleEx: IChartCircleExInfo;

Begin

C := (PrxReport.ActiveReport.ActiveSheet.Table.Objects.Item(0).Extension As IChart);

C.Type := ChartType.SecondaryBars;

CircleEx := C.CircleInfoEx;

CircleEx.DisplayShadow:=True;

CircleEx.Shadow.Color := GxColor.FromName("Blue");

PrxReport.ActiveReport.ActiveSheet.Recalc;

End Sub My;

After executing the example blue shadow of the primary chart is displayed:

See also:

IChartCircleExInfo