UseMarkersThinning: Boolean;
UseMarkersThinning: Boolean;
The UseMarkersThinning property determines whether automatic marker thinning is used.
The property is relevant only for line charts.
Available values:
True. Automatic marker thinning is used.
False. Default value. Automatic marker thinning is not used.
To execute the example, add the components to the form:
UiErAnalyzer with configured properties "Active" = true; "Object" = express report containing a line chart.
ChartBox1 with configured property "Source" = identifier of the UiErAnalyzer component.
Sub UserProc();
Begin
ChartBox1.Chart.UseMarkersThinning := True;
End Sub UserProc;
After executing the example markers on the displayed chart are automatically thinned.
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: