Sample 24890: Change the outline width on a pie chart
/********************************************************/
/* This sample uses the WOUTLINE= option to control the */
/* outline width of the slices. This option is valid */
/* for all of the GCHART statements. */
/********************************************************/
goptions reset=all ftext=swiss;
/* Define a data set for charting */
data a;
input YEAR 4. CNT;
datalines;
1997 25
1998 30
1999 20
2000 10
2001 60
;
title1 'Changing the outline width';
pattern1 v=s c=green;
pattern2 v=s c=blue;
pattern3 v=s c=yellow;
pattern4 v=s c=red;
pattern5 v=s c=pink;
proc gchart data=a;
pie3d YEAR / sumvar=CNT woutline=2 coutline=black discrete;
run;
quit;

This sample uses the WOUTLINE= option to control the outline width of the slices. This option is valid for all of the GCHART statements.
| Type: | Sample |
| Topic: | SAS Reference ==> Procedures ==> GCHART Query and Reporting ==> Creating Reports ==> Graphical ==> Graph Types ==> Charts ==> Pie
|
| Date Modified: | 2005-08-24 16:06:29 |
| Date Created: | 2004-11-11 11:07:55 |
Operating System and Release Information
| SAS System | SAS/GRAPH | All | n/a | n/a |