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 (April 2002, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Fri, 19 Apr 2002 20:35:08 +0200
Reply-To:   Andreas Grueninger <grueninger@IBGRUENINGER.DE>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Andreas Grueninger <grueninger@IBGRUENINGER.DE>
Organization:   T-Online
Subject:   Re: ODS RTF, graph and report on one page
Content-Type:   text/plain; charset=ISO-8859-1

Here an example how maximize the size of the graph for RTF. If you don't use the BY the maximum for YMAX should be 8 inches.

data a; input x group $; cards; 1 a 2 a 1 b 2 b 1 c 2 c ; run;

TITLE; FOOTNOTE; GOPTIONS RESET=ALL; OPTIONS ORIENTATION=LANDSCAPE; GOPTIONS KEYMAP=winansi TARGETDEVICE=sasemf XMAX=10.5 in YMAX=7. in; ODS RTF FILE="test.rtf";

proc gchart data=a; vbar3d x; by group; run; quit;

ODS _ALL_ CLOSE;

"Cynthia Stetz" <cynthia_stetz@YAHOO.COM> schrieb im Newsbeitrag news:20020419170112.80478.qmail@web21302.mail.yahoo.com... > Hi all, > As I said at the SAS-l BOF at SUGI, I've really missed > this list, and have just re-subscribed after a bit of > an absence. Just searched the archives for this > topic, and, while I did read a lot of interesting > things people are doing with ODS, did not find a > solution to my particular problem. > I'm trying to create a single page, in RTF format, > that contains some titles, a graph (VBAR) and then a > proc report. I've played around with alot of options, > including startpage to control paging between > procedures, but I'm still getting a frame (or > picture)in the rtf that is much bigger than the graph > I'm putting in it, and therefore white space at the > top of the page which I don't want. I was able to > edit the file in Word, and by cropping the picture, > get rid of the white space, but I don't really want to > do that. > Does anyone know how I can control the size of the > area RTF uses for the graph? I am already controlling > the size of the graph with goptions hsize and vsize. > I was able to get this to look pretty good using HTML > with a call define to the graph from within the proc > report, but I can't guarantee with html that it will > stay on one page! > Please help! > Regards, > Cynthia A. Stetz > cynthia_stetz@yahoo.com > > __________________________________________________ > Do You Yahoo!? > Yahoo! Tax Center - online filing with TurboTax > http://taxes.yahoo.com/


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