MarkersEnabled: Boolean;
The MarkersEnabled property determines whether markers are shown for chart data series.
Use JSON or the setMarkersEnabled method to set the property value, and the getMarkersEnabled method to get the property value.
Available values:
true. Markers of chart data series are shown (default).
false. Markers of chart data series are not shown.
Executing the example requires that the HTML page contains the Chart component named chart (see Example of Creating a Spline Chart). Hide markers of chart data series:
chart.setMarkersEnabled(false); // Refresh markers of chart data series updateChartMarkers();
After executing the example markers of chart data series are hidden:

See also: