O1MinorGridDisplay

This property enables or disables the display of minor 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). Use O1MinorGridStyle to define the style of minor grid lines. The primary ordinal axis can have major and minor grid lines.

Syntax:

setO1MinorGridDisplay(boolean);
boolean = getO1MinorGridDisplay();

where:

boolean

Can be one of the following:

true draws minor grid lines on the O1-axis.

false does not draw minor grid lines. This value is the default.

Example:

setDepthRadius(0);
setY1MajorGridDisplay(false);
setO1MajorGridStyle(4);
setLineWidth(getO1MinorGrid(),4);
setBorderColor(getO1MinorGrid(),new Color(255,0,0));
setO1MinorGridCount(2);  setO1MinorGridDisplay(true);

bar graph

setO1MinorGridDisplay(false);

bar graph

See O1AxisSide, O1MajorGridDisplay, O1MajorGridStyle, O1MinorGridStyle.


WebFOCUS