| TEMPLATE Procedure: Plot Statements (Experimental) |
controls the display of the axis features such as the axis label, line, tick marks, and values.
| Default: | ALL |
| Requirement: | The display-options must be enclosed in parentheses and separated by spaces. |
specifies that the axis label, line, tick marks, and values are displayed.
specifies that no axis features are displayed.
specifies one or more display options.
displays the axis label.
displays the axis line.
displays the axis tick marks.
displays the values that are represented by the tick marks.
specifies that evenly spaced integer values are used for tick marks.
| Default: | FALSE |
| Interaction: | The INTEGER= option is overridden by the TICKS= axis option. If the variable is not continuous, then INTEGER= option is ignored. |
| Restriction: | The INTEGER= option is ignored on the X axis for bar charts, box plots, and histograms. |
specifies the axis label.
| Default: | The default is to use the label of the column associated with the axis. If the label does not exist, the column name is used as the label. |
Note: For a computed column, the default is the expression used to compute the column.
specifies the font size used to display the axis label.
| Default: | specified by the GraphLabelText:font_size style reference. |
specifies a threshold for displaying one more tick mark at the high end of the axis. The threshold is expressed as a decimal proportion of the tick interval, and it is measured from the potential tick value. If the largest data value lies within this threshold distance from the potential tick mark, then the tick mark is displayed.
specifies a threshold for displaying one more tick mark at the low end of the axis. The threshold is expressed as a decimal proportion of the tick interval, and it is measured from the potential tick value. If the lowest data value lies within this threshold distance from the potential tick mark, then the tick mark is displayed.
| Default: | .30 |
| Range: | 0 - 1 |
| Interaction: | If the variable is not continuous, then the THRESHOLDMIN= option is ignored. |
| Tip: | If the threshold is set to 0, the potential tick mark is never displayed. If the threshold is set to 1, the tick mark is always displayed. |
| Tip: | Specifying THRESHOLDMIN=0 and THRESHOLDMAX=0 prevents the tick marks from extending beyond the data range. |
| Tip: | Specifying THRESHOLDMIN=1 and THRESHOLDMAX=1 ensures that the data range is bounded by tick marks. |
| Tip: | For the minimum axis length, set the THRESHOLDMIN= and THRESHOLDMAX= options to 0. |
| Main discussion: | See the THRESHOLDMAX= sub-option. |
specifies where tick marks are displayed.
| OUTSIDE |
displays tick marks outside of the axis lines. |
| INSIDE |
displays tick marks inside of the axis lines. |
| BOTH |
displays tick marks across the axis lines. |
| Default: | OUTSIDE |
| Main discussion: | The figure displays the effect of the TICKDISPLAY= option on the X axis. |
The figure shows the tick display on an X
axis.
![[untitled graphic]](./images/tickdisplay1.gif)
specifies the tick values for the axis.
| Requirement: | The numeric-list must be enclosed in parentheses and separated by spaces. |
| Interaction: | If the variable is not continuous, then the TICKS= option is ignored. |
| Tip: | If ticks are specified outside of the axis range, then the axis range is extended to display the ticks. |
specifies the font size used to display the tick values.
| Default: | specified by the GraphValueText:font_size style reference. |