LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (February 2009, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Thu, 26 Feb 2009 22:38:27 +0530
Reply-To:     Anindya Mozumdar <anindya.lugbang@GMAIL.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Anindya Mozumdar <anindya.lugbang@GMAIL.COM>
Subject:      Re: Rotating text in png files
Comments: To: "hvidkjaer@gmail.com" <hvidkjaer@gmail.com>
In-Reply-To:  <ef228ca0-6be7-4c9f-a78c-26fbf534827e@q9g2000yqc.googlegroups.com>
Content-Type: text/plain; charset=ISO-8859-1

On Thu, Feb 26, 2009 at 10:29 PM, hvidkjaer@gmail.com <hvidkjaer@gmail.com> wrote: > Hi, > > I've created a png device driver using the macro below. The macro is > from SI, but modified for landscape figures. The output looks fine, > except that I'm not able to change the orientation of the axis text > (that is, of the individual characters). For instance, running >

Rotate works for me -

goptions device = png;

axis1 value = (rotate = 0 angle = 90); proc gplot data = sashelp.class; plot weight * sex / haxis = axis1; run; quit;

Regards, Anindya


Back to: Top of message | Previous page | Main SAS-L page