Chart.MarkersEnabled

Syntax

MarkersEnabled: Boolean;

Description

The MarkersEnabled property determines whether markers are shown for chart data series.

Comments

Use JSON or the setMarkersEnabled method to set the property value, and the getMarkersEnabled method to get the property value.

Available values:

Example

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:

Chart