proc means data=mylib.ex25_2;
var age;
run;
goptions reset htext=4 pct;/*改变字体大小*/
title color=green font='黑体/blod' height=8 "分类图";
proc gchart data=mylib.ex25_2;
pie unit gender/type=sum
percent=arrow /*显示百分比*/
slice=inside
ctext=red
value=outside
;
run;