![]() Chapter Contents |
![]() Previous |
![]() Next |
| The GCHART Procedure |
| Procedure features: |
| ||||||||||||
| Other features: |
| ||||||||||||
| Data set: | TOTALS | ||||||||||||
| Sample library member: | GR13N08 |
The second pie chart is a 3D pie chart with an exploded slice, as shown in the following output.
| | libname reflib 'SAS-data-library';
goptions reset=global gunit=pct border cback=white
colors=(blue green red) ctext=black
ftitle=swissb ftext=swiss htitle=6 htext=4; |
| | title 'Total Sales'; footnote j=r 'GR13N08(a) '; |
| | proc gchart data=reflib.totals;
format sales dollar8.;
pie site / sumvar=sales
coutline=black;
run; |
| | footnote j=r 'GR13N08(b) '; |
| | pie3d site / sumvar=sales
coutline=black
explode='Paris';
run;
quit; |
![]() Chapter Contents |
![]() Previous |
![]() Next |
![]() Top of Page |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.