DisplayMarkers: Boolean;
DisplayMarkers: Boolean;
The DisplayMarkers property determines visibility of markers.
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:
True. Default value. Markers are displayed.
False. Markers are hidden.
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.DisplayMarkers := False;
End Sub UserProc;
After executing the example markers are disabled on the displayed chart.
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: