IChartCorridor.GradientFill

Syntax

GradientFill: Boolean;

Description

The GradientFill property determines fill type for a chart corridor. If this property is set to True, gradient fill is used. If the property is set to False, the fill is monochrome.

Example

This example assumes that there is the Corridor object of the IChartCorridor type.

Sub GradientFill;

Var

Corridor: IChartCorridor;

Begin

Corridor.GradientFill := True;

End Sub GradientFill;

After executing the example, the fill type of a chart corridor is changed to gradient fill, for example:

See also:

IChartCorridor