| Date: | Mon, 6 Aug 2007 20:22:52 -0700 |
| Reply-To: | nancynpaul-sasl@YAHOO.COM |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Paul OldenKamp <nancynpaul-sasl@YAHOO.COM> |
| Organization: | http://groups.google.com |
| Subject: | Re: ODS PDF x SAS/GRAPH grief |
|
| In-Reply-To: | <1186454412.958284.270980@j4g2000prf.googlegroups.com> |
| Content-Type: | text/plain; charset="us-ascii" |
|---|
Hi,
I believe that you need an 'orientation = landscape' system option.
I was also having difficulty centering my ODS PDF graphs until I added
topmargin = 0, bottommargin = 0, leftmargin = 0, and rightmargin = 0
system options:
options
bottommargin = 0
leftmargin = 0
topmargin = 0
rightmargin = 0
orientation = landscape
;
run;
I used the following goptions to get pretty good results:
goptions
reset = all
target = SASprtc
noborder
cback = cxFFFFEb /* Ivory */
colors = (cx000000 /* black */
cx8080ff /* blue */
cx61A835 /* green */
cxFABC46 /* yellow */
cxD77100 /* orange */
cxFF6464 /* red */
cxCC0067 /* violet */
cx8B3F89 /* dark purple */
cx008040 /* dark green */
cx3F769A /* dark blue */
cxB0C1F4 /* light blue */
cx1FBECB /* blue green ??*/
cx7DFF88 /* light green */
cxEE53EE /* light purple */
)
ctext = black
ctitle = black
device = win
ftext = 'Helvetica'
ftitle = 'Helvetica'
gunit = pct
horigin = .25 in
hsize = 10.0in
transparency
htext = 1
htitle = 2
rotate = landscape
vorigin = .25in
vsize = 7.5in
;
run;
Even though the horgin and vorigin is set to .25in the result is a
border of .5 inch.
Just today I opened a track with SAS Tech Support about the fact that
proc gtestit is incorrect in ODS PDF and the font sizes are too large
in the ODS PDF output in comparison to output in the graph window.
Good luck,
Paul
|