Hi. When I run the following code...
data pie1;
do i=1 to 1000;
v=5;
output;
end;
v=10;
output;
v=15;
output;
v=20;
output;
run;
ods listing gpath='/home/xxx/AHAGM/images';
ods graphics / imagename="pie1" imagefmt=png;
title "pie1";
proc sgpie data=pie1;
pie v / otherpercent=0;
run;
I get this result. My understanding is that using "otherpercent=0" should cause all slices to appear and be labelled.
