WebFOCUS Online Help > Creating Charts With Graph Tools > Customizing Graphs With the Graph Editor > Group Axis Options
How to: |
Group Axis options are available in the Graph Editor menu when a bar, line, area, or stock chart is selected in the Graph Type menu.
The Group Axis Options enable you to:
Select this field if you want the primary ordinal (O1) axis to be imaged at the bottom of a vertical chart or on the left side of a horizontal chart. This is the default value.
Select this field if you want the primary ordinal (O1) axis to be imaged at the top of a vertical chart or the right side of a horizontal chart.
Select this field if you want the primary ordinal (O1) axis to be imaged at the top and bottom of a vertical chart or left and right sides of a horizontal chart.
Selections in the associated dialog boxes add the following properties and methods to the code that defines this chart:
Editor Field |
Property/Method |
---|---|
Bottom Side of Chart |
setAxisSide (getO1Axis(), 0); |
Top Side of Chart |
setAxisSide (getO1Axis(), 1); |
Both Sides of Chart |
setAxisSide (getO1Axis(), 2); |
Enables and disables the display of primary ordinal (O1) axis labels. The default value is enabled (group/O1 axis labels appear). When this box is checked the setting in the General tab determines where the labels appear (left, right, both).
When Show Axis Labels is selected (ž), this field enables and disables the display of the first group label on the primary ordinal (O1) axis. The default value is disabled (the first group label appears).
When Show Axis Labels is selected (ž), this field enables and disables the display of the last group label on the primary ordinal (O1) axis. The default value is disabled (the last group label appears).
Selections in the associated dialog boxes add the following properties and methods to the code that defines this chart:
Editor Field |
Property/Method |
---|---|
Show Axis Labels |
setDisplay ( getO1Label(), true | false); |
Hide First Label |
setExcludeMinLabel ( getO1Label(), true | false ); |
Hide Last Label |
setExcludeMaxLabel ( getO1Label(), true | false ); |
Enables and disables the display of major grid lines for the primary ordinal (O1) axis. The default value is enabled (ž).
When Show Major Grid Lines is selected (ž), use this field to select the style of the major grid lines: Regular Grids, Grids and Ticks, Inner Ticks, Outer Ticks, or Spanning Ticks. The default value is Regular Grids.
Enables and disables the display of minor grid lines for the primary ordinal (O1) axis. The default value is disabled (minor grid lines do not appear).
Selections in the associated dialog boxes add the following properties and methods to the code that defines this chart:
Editor Field |
Property/Method |
---|---|
Show Major Grid Lines |
setDisplay ( getO1MajorGrid(), true | false ); |
Style |
setGridStyle ( getO1MajorGrid(), value ); |
Show Minor Grid Lines |
setDisplay ( getO1MinorGrid(), true | false ); |
Style |
setGridStyle ( getO1MinorGrid(), value ); |
WebFOCUS |