LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous (more recent) messageNext (less recent) messagePrevious (more recent) in topicNext (less recent) in topicPrevious (more recent) by same authorNext (less recent) by same authorPrevious page (November 1999, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Tue, 2 Nov 1999 15:12:14 -0500
Reply-To:   rchilds@BOSTONBIO.COM
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Randy Childs <rchilds@BOSTONBIO.COM>
Subject:   Re: rotate plot
Content-Type:   text/plain; charset=ISO-8859-1

Philip,

Try the following. Create your graph and then use the following code to replay the graph. Everything will turn upside-down (including the text) if that is what you were looking for. Note that the name "GPLOT" in the TREPLAY statement will change as you create additional graphs (see the SAS/GRAPH manual for how these names are derived). Alternatively, you can use the NAME option on your PLOT statement and then use NAME in the TREPLAY statement. Hope this helps.

proc greplay nofs igout=work.gseg tc=tempcat; tdef new des='Whole with clip' 1/urx=0 ury=0 lrx=0 lry=100 llx=100 lly=100 ulx=100 uly=0; template new; list template; treplay 1:gplot; run; quit;

Randy

The document(s) in this electronic transmission may contain confidential information belonging to the sender. This electronic transmission and the information contained in it are intended only for the use of the individual or entity named above. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution or the taking of any action in reliance on the contents is strictly prohibited. If you have received this electronic transmission in error, please immediately notify the sender by telephone to arrange for the return of the original document(s) or for the destruction of the transmission.


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