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 (October 2004, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Thu, 21 Oct 2004 16:33:45 -0400
Reply-To:   "Richard A. DeVenezia" <radevenz@IX.NETCOM.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   "Richard A. DeVenezia" <radevenz@IX.NETCOM.COM>
Subject:   Re: print ± sign on graph

Ling Yun Chen wrote: > Hi SAS-Lers, here's a simple question (or not) for you. I need to > print the sign '±' on my SAS graph. I was able to get the annotate > data set to have this sign but SAS graph won't print it. Is there a > trick in printing these special characters in SAS graph? Thanks!

Character F1 should do the trick. If you use a truetype font such as 'Arial' or 'Comic Sans MS' the character is B1

goptions reset=all;

symbol1 value='B1'x font='Arial' ; symbol1 value='F1'x font=Swiss ;

proc gplot data=sashelp.class; plot weight * age; run; quit;

Wondering what a fonts glyphs look like ?

Try http://www.devenezia.com/downloads/sas/samples#fontdump

-- Richard A. DeVenezia


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