FillBrash: IGxBrush;
The FillBrush property determines marker's fill.
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: