IChartCircleExInfo.DisplayShadow

Syntax

DisplayShadow: Boolean;

Description

The DisplayShadow property determines whether a primary chart shadow is displayed. If the property is set to True, the shadow is displayed on the chart; if the property is set to False, the shadow is not displayed.

Example

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

Sub Userproc;
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;
    PrxReport.ActiveReport.ActiveSheet.Recalc;
End Sub UserProc;

After executing the example the primary chart shadow is displayed:

See also:

IChartCircleExInfo