IChartShadow.Direction

Syntax

Direction: IGxPointF;

Description

The Direction property determines a shadow offset.

Example

This example assumes that there is the Chart object of the IChart type.

Sub Shad;

Var

Chart: IChart;

Pnt : IGxPointF;

Begin

Pnt := New GxPointF.Create (1.00,2.00);

Chart.Series.Item(0).Shadow.Direction := Pnt;

End Sub Shad;

After executing the example the specified data series on a graph will have a shadow offset by the specified values.

See also:

IChartShadow