IChart.UseMarkersThinning

Fore Syntax

UseMarkersThinning: Boolean;

Fore.NET Syntax

UseMarkersThinning: Boolean;

Description

The UseMarkersThinning property determines whether automatic marker thinning is used.

Comments

The property is relevant only for linear charts.

Available values:

Fore Example

To execute the example add the components to a form:

Sub UserProc();
Begin
    ChartBox1.Chart.UseMarkersThinning := True;
End Sub UserProc;

After executing the example, markers on the displayed chart are automatically thinned.

Fore.NET Example

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

Sub UserProc();
Begin
    ChartBoxNet1.CtrlBox.Chart.UseMarkersThinning := True;
End Sub UserProc;

See also:

IChart