|
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
|