IChartMarker.MarkerType

Syntax

MarkerType: ChartMarkerType;

Description

The MarkerType property determines marker type (square, circle, diamond and so on.).

Example

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

Sub Type;
Var
    Marker : IChartMarker;
Begin
    Marker.MarkerType := 1 As ChartMarkerType;
End Sub Type;

After executing the example the type of marker in the chart is changed to diamond.

See also:

IChartMarker