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 line charts.

Available values:

Fore Example

To execute the example, add the components to the 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 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.UseMarkersThinning := True;
End Sub UserProc;

See also:

IChart