Dear all,
I'd like to have an angle of 90 degrees for the label of my plot. I have decive=png and I use SAS 9.2 on a UNIX server within the SAS portal.
please look at this code which I have in an STP:
ods html file=_webout(no_top_matter no_bottom_matter) path=&_TMPCAT (url=&_REPLAY);
goptions device=png;
proc gplot data=sashelp.class;
plot height*weight / vaxis=axis1;
axis1 label=("please change angle" angle=90);
run;
quit;
ods _all_ close;
The angle is not changed. But when I run this code in the Enterprise Guide it is fine with the angle.
When I run the same code in the STP but with device=javaimg the angle is shown correctly.
There is a similar post on the internet. Seems I'm not the only one with the problem.
Can anybody help? I'd like to use png but the angle is the only problem I have now.
Best wishes
Eva
Put the angle before the text ...
proc gplot data=sashelp.class;
plot height*weight / vaxis=axis1;
axis1 label=(angle=90 "please change angle");
run;
(If it works in dev=javaimg, that implementation of the feature is a bit 'non-standard')
Put the angle before the text ...
proc gplot data=sashelp.class;
plot height*weight / vaxis=axis1;
axis1 label=(angle=90 "please change angle");
run;
(If it works in dev=javaimg, that implementation of the feature is a bit 'non-standard')
It works!
Thanx a lot. Funny implementation.
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.