Chapter Contents |
Previous |
Next |
The GCHART Procedure |
Procedure features: |
| |||
Other features: | FORMAT statement | |||
Sample library member: | GR13N01 |
The chart uses default patterns and colors. The block faces use the default pattern fill, which is solid. Because a colors list is specified in the GOPTIONS statement, the default fill color is the first color in the list, blue. The midpoint grid and the block outlines also use the first color in the list.
All the blocks use the same pattern because by default patterns change for subgroups and in this chart subgroups are not specified.
libname reflib 'SAS-data-library'; goptions reset=global gunit=pct border cback=white ctext=black colors=(blue green red) ftext=swiss ftitle=swissb htitle=6 htext=3.5; |
title 'Total Sales'; footnote j=r 'GR13N01 '; |
proc gchart data=reflib.totals; format sales dollar8.; block site / sumvar=sales; run; quit; |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.