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 (July 2011, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Sat, 23 Jul 2011 13:01:02 -0400
Reply-To:     Nat Wooding <nathani@VERIZON.NET>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Nat Wooding <nathani@VERIZON.NET>
Subject:      Re: ODS GRAPHICS statement and SGPLOT XXXX
Comments: To: Daniel Yanosky <dyanosky@KENNESAW.EDU>
In-Reply-To:  <2faea51a-fd8b-43e0-8676-56b33f801c98@ksupo1.kennesaw.edu>
Content-Type: text/plain; charset="us-ascii"

Since the list is very quiet today, I'll throw out a couple ideas.

Do you get three plots if you take off the ODS? And, what happens if you revert to

Proc Gchart; Vbar &var1; Run; Quit;

Nat Wooding

-----Original Message----- From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of Daniel Yanosky Sent: Saturday, July 23, 2011 10:19 AM To: SAS-L@LISTSERV.UGA.EDU Subject: ODS GRAPHICS statement and SGPLOT XXXX

Hi everyone,

I am using the following ODS GRAPHICS statement to adjust the size of the graph when printing to an rtf file using ODS RTF. Why do I get 3 graphs instead of just the 1 I was expecting? How can I select just 1 of these graphs?

ODS GRAPHICS ON / WIDTH=5.25IN HEIGHT=4.5IN; PROC SGPLOT DATA = &IDT; TITLE "Bar Chart of &VAR1"; VBAR &VAR1; RUN; QUIT; ODS GRAPHICS OFF;

Thanks!

Daniel


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