O1MinorGridStyle

This property controls the style of the minor grid lines on the primary ordinal (O1) axis. The primary ordinal axis can have major and minor grid lines. Different styles should be selected for major and minor grid lines so the user can distinguish between the two.

Syntax:

setO1MinorGridStyle(value);
value = getO1MinorGridStyle();

where:

value

Can be one of the following:

0 for normal grid lines, height of frame. 0 is the default value.

1 for normal grid lines extending beyond the height of frame.

2 for small tick marks from frame edge inward.

3 for small tick marks from frame edge outward.

4 for small tick marks spanning across the frame edge.

Example:

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

bar graph

setO1MinorGridStyle(1);

bar graph

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


WebFOCUS