Shadow: IChartShadow;
The Shadow property determines parameters for a shadow of a data series.
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: