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 it 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 a form:
UiErAnalyzer with configured properties "Active" = true; "Object" = express report containing a linear 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 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.DisplayMarkers := False;
End Sub UserProc;
See also: