IChart.DisplayMarkers

Fore Syntax

DisplayMarkers: Boolean;

Fore.NET Syntax

DisplayMarkers: Boolean;

Description

The DisplayMarkers property determines visibility of markers.

Comments

If the property is set to True, markers are displayed for chart series; if the property is set to False, markers are not displayed.

Available values:

Fore Example

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

Sub UserProc();
Begin
    ChartBox1.Chart.DisplayMarkers := False;
End Sub UserProc;

After executing the example markers are disabled on the displayed chart.

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.DisplayMarkers := False;
End Sub UserProc;

See also:

IChart