BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Eva
Quartz | Level 8 Eva
Quartz | Level 8

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

1 ACCEPTED SOLUTION

Accepted Solutions
GraphGuy
Meteorite | Level 14

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')

View solution in original post

2 REPLIES 2
GraphGuy
Meteorite | Level 14

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')

Eva
Quartz | Level 8 Eva
Quartz | Level 8

It works!

Thanx a lot. Funny implementation.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 811 views
  • 0 likes
  • 2 in conversation