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.
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
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.