IChartMarker.BorderPen

Syntax

BordenPen: IGxPen;

Description

The BordenPen property determines parameters for a marker outline.

Example

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

Sub SetPen;
Var
    BPen: IGxPen;
    Marker: IChartMarker;
Begin
    BPen := New GxPen.CreateSolid(New GxColor.CreateARGB(255,0,0,255),1.02)
    Marker.BorderPen := BPen;
End Sub SetPen;

After executing the example the marker is outlined with blue.

See also:

IChartMarker