IChart.DefaultMarker

Fore Syntax

DefaultMarker: ChartMarkerType;

Fore Syntax

DefaultMarker: Prognoz.Platform.Interop.Chart.ChartMarkerType;

Description

The DefaultMarker property determines a default marker type.

Comments

If not all chart series have the same marker type, the 15 value (Custom) is returned.

Fore Example

To execute the example, add the components to the form:

Sub UserProc();
Begin
   ChartBox1.Chart.DefaultMarker := ChartMarkerType.Diamond;
End Sub UserProc;

After executing the example markers are displayed as diamonds.

Fore.NET Example

The conditions and result of the Fore.NET example execution match with those in the Fore example. Use .NET analogs of the components:

Sub UserProc();
Begin
    ChartBoxNet1.CtrlBox.Chart.DefaultMarker := ChartMarkerType.cmtDiamond;
End Sub UserProc;

See also:

IChart