The CHART Procedure |
PROC CHART <option(s)>; |
Options |
identifies the input SAS data set.
Main discussion: | Input Data Sets |
Restriction: | You cannot use PROC CHART with an engine that supports concurrent access if another user is updating the data set at the same time. |
defines the characters to use for constructing the horizontal and vertical axes, reference lines, and other structural parts of a chart. It also defines the symbols to use to create the bars, blocks, or sections in the output.
identifies the position of one or more characters in the SAS formatting-character string. A space or a comma separates the positions.
Default: | Omitting (position(s)), is the same as specifying all 20 possible SAS formatting characters, in order. |
Range: | PROC CHART uses 6 of the 20 formatting characters that SAS provides. Formatting Characters Used by PROC CHART shows the formatting characters that PROC CHART uses. Formatting Characters Commonly Used in PROC CHART Output illustrates the use of formatting characters commonly used in PROC CHART. |
lists the characters to use for the specified positions. PROC CHART assigns characters in formatting-character(s) to position(s), in the order that they are listed. For example, the following option assigns the asterisk (*) to the second formatting character, the pound sign (#) to the seventh character, and does not alter the remaining characters:
formchar(2,7)='*#'
Position ... | Default | Used to draw |
---|---|---|
1 | | | Vertical axes in bar charts, the sides of the blocks in block charts, and reference lines in horizontal bar charts. In side-by-side bar charts, the first and second formatting characters appear around each value of the group variable (below the chart) to indicate the width of each group. |
2 | - | Horizontal axes in bar charts, the horizontal lines that separate the blocks in a block chart, and reference lines in vertical bar charts. In side-by-side bar charts, the first and second formatting characters appear around each value of the group variable (below the chart) to indicate the width of each group. |
7 | + | Tick marks in bar charts and the centers in pie and star charts. |
9 | - | Intersection of axes in bar charts. |
16 | / | Ends of blocks and the diagonal lines that separate blocks in a block chart. |
20 | * | Circles in pie and star charts. |
specifies the proportions of PIE and STAR charts. The value is determined by
For example, if you have a printer with 8 lines per inch and 12 columns per inch, then specify LPI=6.6667.
Default: | 6 |
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.