Hi,
I wish to export the pie chart I created as pdf. I used the following code.
goptions reset=all border cback=white
htitle=5pt gsfname=grafout gsfmode=replace device=pdf;
filename grafout 'mypath\mydata.pdf';
legend1 label=none
shape=bar(4,1.5)
position=(top left)
offset=(5,)
across=4
mode=share;
proc gchart data=mydata ;
pie var1 / sumvar=var2
noheading
coutline=black
other=0
value= inside
angle=30
ascending
percent= arrow
jstyle
legend=legend1;
run;
quit;
When I run the above code, it says the data has been written to: \\AppData\Local\Temp\SAS Temporary Files\_TD5700_mm-b4_\gchart.png.
Any help?
... View more