IChartSerie.MarkerSize

Syntax

MarkerSize: Double;

Description

The MarkerSize property determines the size of data series markers.

Example

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

Sub MarkerS;
Var
    Serie : IChartSerie;
Begin
    Serie.MarkerSize := 4.5;
End Sub MarkerS;

After executing the example the size of markers of the data series is changed and is equal to 4.5 mm.

See also:

IChartSerie