| Date: | Mon, 28 Jan 2008 14:24:05 -0800 |
| Reply-To: | mholmes@CUESTA.EDU |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | mholmes@CUESTA.EDU |
| Organization: | http://groups.google.com |
| Subject: | Tick values display vertically |
|
| Content-Type: | text/plain; charset=ISO-8859-1 |
Hello all,
I am trying to create histograms where the tick values are 0.25
units apart. When I plot them out, the values are displayed
vertically on the x-axis. For instance, the tick value 1.25 will be
displayed like this:
1
.
2
5
Here are my goptions statements. It worked fine when I was using CGM
device but not when I use EMF. Can anyone shed some light on this?
Thanks.
Mike
%if %substr(%upcase(&device),1,3) =EMF %then %do ;
goptions reset=all ;
goptions gsfname=gsfplot gsfmode=replace gunit=pct ;
* goptions nocharacters nocell nofill nosymbol noprompt ;
goptions cback=white colors=(black) ;
goptions ftext="Arial" ftrack=loose ;
goptions rotate=landscape ;
goptions hsize=12in ;
title1 ' ' ;
title2 ' ' ;
footnote1 ' ' ;
%let font=times ;
|