DisplayShadow: Boolean;
The DisplayShadow property determines whether the shadow of the master chart will be displayed. If the property value is True the shadow is displayed on the chart. If the property is set to False the shadow is not displayed.
This 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;
PrxReport.ActiveReport.ActiveSheet.Recalc;
End Sub My;
After executing the example shadow of the main chart is displayed:
See also: