IChartSerie.MarkerType

Syntax

MarkerType: ChartMarkerType;

Description

The MarkerType property determines the type of markers for a data series.

Example

This example assumes that there is the Serie object of the IChartSerie type.

Sub MarkerS;

Var

Serie : IChartSerie;

Begin

Serie.MarkerType := 1 As ChartMarkerType;

End Sub MarkerS;

After executing the example the type of markers of the data series is changed to diamond.

See also:

IChartSerie