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 2009, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Fri, 17 Jul 2009 14:43:07 -0700
Reply-To:     "Huang, Ya" <Ya.Huang@AMYLIN.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         "Huang, Ya" <Ya.Huang@AMYLIN.COM>
Subject:      Re: GChart - Center NOTE
Comments: To: jasonm@ucla.edu
In-Reply-To:  <20090717143714.50551rbo1ygc8cv4@mail.ucla.edu>
Content-Type: text/plain; charset="us-ascii"

In SAS explorer, click sashelp -> "Devices" folder -> Click the device you want to check, the output window will show all the default setting for that device.

-----Original Message----- From: jasonm@ucla.edu [mailto:jasonm@ucla.edu] Sent: Friday, July 17, 2009 2:37 PM To: Huang, Ya Cc: SAS-L@LISTSERV.UGA.EDU Subject: RE: GChart - Center NOTE

Do you know where I can find the default settings for the different devices (eg font, font-size, color, etc)? Thank you for your help.

Quoting "Huang, Ya" <Ya.Huang@amylin.com>:

> Most of the bitmap format will do, such as jpeg: > > ods html file="c:\temp\junk.html" gpath="c:\temp"; > > goptions reset=all dev=jpeg; > > proc gplot data=sashelp.class; > plot weight*height; > note move=(50,50)pct "test"; > run; > quit; > > ods html close; > > > -----Original Message----- > From: jasonm@ucla.edu [mailto:jasonm@ucla.edu] > Sent: Friday, July 17, 2009 2:10 PM > To: Huang, Ya > Cc: SAS-L@LISTSERV.UGA.EDU > Subject: Re: GChart - Center NOTE > > Which device supports NOTE? > > > Quoting Ya Huang <ya.huang@AMYLIN.COM>: > >> It's probably not supported for ActiveX yet. But you can try >> annotation, which is now supported if you have v9.2. Remember even >> annotation wasn't supported for Java and ActiveX in early version. >> >> On Fri, 17 Jul 2009 12:09:44 -0700, J M <jasonm@UCLA.EDU> wrote: >> >>> At the moment the word "test" is not showing up on my gchart. >>> How do I get the word "test" to appear and show up in the center of >>> the gchart? >>> >>> GOPTIONS device=activex; >>> proc gchart data=job; >>> vbar age /type=percent group=gender range >>> gaxis=axis2 >>> raxis=axis1 >>> levels=9 >>> ; >>> note move=(50,50)pct "test"; >>> run; >>> >>> Thank you. >> > > >


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