|
Chen, Jian wrote
> Following is a pie chart code, I don't know why the explode='At Risk
> Overweight and Obese' doesn't work?
move the explode item on it's own separate line
like this
proc gchart ;
title h=4 pct 'Percentage of Children by Weight Categories, CY 2002';
pie group/sumvar=percent noheading fill=s
explode='At Risk Overweight and Obese' coutline=black ;
format percent pctfmt.;
pattern1 v=s c=stpk;
pattern2 v=s c=depk;
pattern3 v=s c=vpab;
format group $groupfmt.;
run; quit;
|