Hi:
I thought you wanted to change the size, not the resolution. For example, if you run the code below, you will see that the first output is smaller than the second output -- and the horizontal axis is treated differently by PROC GPLOT based on the differing sizes specified for HSIZE and VSIZE.
You ask whether it is possible for your AUTOEXEC options to have an impact on your graph output. Absolutely. Since some GOPTIONS are cumulative in each session, it is entirely possible that you are ending up with conflicting options.
You cannot attach pictures or screenshots to forum postings. However, if you open a track with Tech Support, you can send screenshots, log output and other output to them. To open a track with Tech Support, go to:
http://support.sas.com/ctx/supportform/createForm
cynthia
[pre]
proc means data=sashelp.prdsale mean nway;
where year(month) = 1993;
class month country;
var actual;
output out=work.mnout mean=Actmean;
format month monyy5.;
run;
ods listing close;
options gstyle;
goptions reset=all hsize=4in vsize=3in dev=gif;
symbol1 i=join;
ods html path='c:\temp'(url=none)
gpath='c:\temp' (url=none)
file='img4by3.html' style=listing;
proc gplot data=work.mnout;
plot Actmean * Month=Country /
haxis=('01jan1993'd, '01feb1993'd, '01mar1993'd
'01apr1993'd, '01may1993'd, '01jun1993'd
'01jul1993'd, '01aug1993'd, '01sep1993'd
'01oct1993'd, '01nov1993'd, '01dec1993'd);
format month monyy5.;
run;
quit;
ods html close;
goptions reset=all hsize=8in vsize=6in dev=gif;
symbol1 i=join;
ods html path='c:\temp'(url=none)
gpath='c:\temp' (url=none)
file='img8by6.html' style=listing;
proc gplot data=work.mnout;
plot Actmean * Month=Country /
haxis=('01jan1993'd, '01feb1993'd, '01mar1993'd
'01apr1993'd, '01may1993'd, '01jun1993'd
'01jul1993'd, '01aug1993'd, '01sep1993'd
'01oct1993'd, '01nov1993'd, '01dec1993'd);
format month monyy5.;
run;
quit;
ods html close;
goptions reset=all;
title; footnote;
[/pre]
... View more