IChartMarker.FillBrush

Syntax

FillBrash: IGxBrush;

Description

The FillBrush property determines marker's fill.

Example

This example assumes that there is the Marker object of the IChartMarker type.

Sub SetBrush;

Var

Marker : IChartMarker;

b : IGxBrush;

Begin

b := New GxSolidBrush.Create(New GxColor.CreateARGB(255,0,0,255));

Marker.FillBrush := b;

End Sub SetBrush;

After executing the example marker fill becomes blue.

See also:

IChartMarker