DrawAreaMarkers

This property controls the display of markers on an area chart. By default, the area chart is drawn without markers.

Syntax:

setDrawAreaMarkers (boolean);
boolean = getDrawAreaMarkers();

where:

boolean

Can be one of the following:

true draws markers for area charts.

false does not draw markers for area charts. This value is the default.

Example:

With setDrawAreaMarkers(false), the markers are not drawn on the area chart:

setDrawAreaMarkers(false);

With setDrawAreaMarkers(true), the markers are drawn on the area chart:

setDrawAreaMarkers(true);


WebFOCUS