Shadow: IChartShadow;
The Shadow property determines parameters of data series shadow.
Before applying shadow parameters set the DisplayShadow property to True.
This example assumes that there is the Serie object of the IChartSerie type.
Sub Shad;
Var
Pnt : IGxPointF;
Serie: IChartSerie;
Begin
Pnt := New GxPointF.Create (1.00,2.00);
Serie.Shadow.Direction := Pnt;
Serie.Shadow.Color := GxColor.FromName("Blue");
End Sub Shad;
After executing the example the data series in a graph will have blue shadow, offset by the specified distance.
See also: