O1MajorGridDisplay

This property enables or disables the display of major grid lines on the primary ordinal (O1) axis grid (that is, lines attached to a text-based axis, like the "bottom" axis of a bar graph). The O1AxisSide property determines the location where grids and ticks are displayed. Use O1MajorGridStyle to define the style of major grid lines. The primary ordinal axis can have major and minor grid lines.

Syntax:

setO1MajorGridDisplay(boolean);
boolean = getO1MajorGridDisplay();

where:

boolean

Can be one of the following:

true draws major grid lines on the O1-axis. This value is the default.

false does not draw major grid lines.

Example:

setDepthRadius(0);
setY1MajorGridDisplay(false);
setY1AxisLineDisplay(false);  setO1MajorGridDisplay(true);

bar graph

setO1MajorGridDisplay(false);

bar graph

See O1AxisSide, O1MajorGridStyle, O1MinorGridDisplay, O1MinorGridStyle, getGridStyle(), setGridStyle().


WebFOCUS