Unfortunately, it is not only 9.2. It is a pain that versions, devices and destinations alter graphs so much, and I struggle to find a justification.
Why these 2 should yield a different result is beyond me:
goption dev=gif;
proc gchart data=sashelp.class; vbar age;run;quit;
goption dev=png;
proc gchart data=sashelp.class; vbar age;run;quit;
It would be great if a new set of drivers looking the same across all destinations was designed. Even just one driver actually, say PNGIMG, looking roughly like say ACTXIMG.
This way a 10pt font would have a consistent size, unlike:
ods html;
goption dev=gif ftext='arial' htext=10pt;
proc gchart data=sashelp.class; vbar age;run;quit;
goption dev=png;
proc gchart data=sashelp.class; vbar age;run;quit;
goption dev=actximg;
proc gchart data=sashelp.class; vbar age;run;quit;
ods html close;
Message was edited by: Chris@NewZealand