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 (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 10:18:34 -0400
Reply-To:     Daniel Yanosky <dyanosky@KENNESAW.EDU>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Daniel Yanosky <dyanosky@KENNESAW.EDU>
Subject:      ODS GRAPHICS statement and SGPLOT XXXX
In-Reply-To:  <d6865af8-8af5-49da-b11e-6da2a1b0074f@ksupo1.kennesaw.edu>
Content-Type: text/plain; charset=utf-8

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