<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: special symbol in gplot labels in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128121#M4983</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What do you get when you run the following?...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;goptions device=png;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;axis1 label=(angle=90 font="albany amt" 'Here is a mu character:&amp;nbsp; '&lt;/P&gt;&lt;P&gt; font="albany amt/unicode" '03bc'x font="albany amt" '&amp;nbsp; ' font="albany amt/unicode" '006d'x);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;axis2 offset=(15,15);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;symbol1 value=circle interpol=boxcti;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc gplot data=sashelp.class;&lt;/P&gt;&lt;P&gt;plot height*sex / vaxis=axis1 haxis=axis2;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Nov 2012 15:01:48 GMT</pubDate>
    <dc:creator>GraphGuy</dc:creator>
    <dc:date>2012-11-16T15:01:48Z</dc:date>
    <item>
      <title>special symbol in gplot labels</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128108#M4970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just a quick question. How can we use label statement in gplot to put special symbols in axis label?&lt;/P&gt;&lt;P&gt;For example, how to put a 'um' (mu m) there? I tried to copy that 'mu' symbol from "system map" (ms windows), but it just did not work.&lt;/P&gt;&lt;P&gt;Any suggestion? or any other method to do so? thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2012 22:12:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128108#M4970</guid>
      <dc:creator>Ken_oy</dc:creator>
      <dc:date>2012-11-15T22:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: special symbol in gplot labels</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128109#M4971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I found a way to do this, by using the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;label=(f=arial h=3 c=black justify=c a=90 "Length (%sysfunc(byte(181),$1.)m)" )&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The "%sysfunc(byte(181),$1.)" should show as the the 'mu' sign in the gplot. The number "181" came from the following unicode chart: (link)&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.ssec.wisc.edu/~tomw/java/unicode.html" title="http://www.ssec.wisc.edu/~tomw/java/unicode.html"&gt;Unicode Chart&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We can see that "mu" can be located from "181" (Latin-1 Supplement chart). If we want other symbols, we can just simply replace the "181" with other numbers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then here comes the second question: &lt;/P&gt;&lt;P&gt;The method above works and only works for Latin-1 Supplement chart. How if we want to throw in other special symbols?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2012 22:29:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128109#M4971</guid>
      <dc:creator>Ken_oy</dc:creator>
      <dc:date>2012-11-15T22:29:28Z</dc:date>
    </item>
    <item>
      <title>Re: special symbol in gplot labels</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128110#M4972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For GPLOT, you can do it this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;axis1 label=(font="Arial/unicode" "03bc"x "006d"x);&lt;/P&gt;&lt;P&gt;proc gplot data=sashelp.class;&lt;/P&gt;&lt;P&gt;plot weight*height / haxis=axis1;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assuming you have SAS 9.2 or greater, you can do this in SGPLOT using ODS escapement syntax:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sgplot data=sashelp.class;&lt;/P&gt;&lt;P&gt;xaxis label="(*ESC*){unicode mu}m";&lt;/P&gt;&lt;P&gt;scatter x=weight y=height;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2012 22:30:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128110#M4972</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2012-11-15T22:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: special symbol in gplot labels</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128111#M4973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@DanH, Thanks for the quick reply. I tried you code, the code worked. The problem is, the "mu" and the "m" overlap each other. How can I set them one after another in the label? Thanks again!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2012 22:38:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128111#M4973</guid>
      <dc:creator>Ken_oy</dc:creator>
      <dc:date>2012-11-15T22:38:57Z</dc:date>
    </item>
    <item>
      <title>Re: special symbol in gplot labels</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128112#M4974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What I tired was the GPLOT code, have not tried the Sgplot yet, but I will &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2012 22:40:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128112#M4974</guid>
      <dc:creator>Ken_oy</dc:creator>
      <dc:date>2012-11-15T22:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: special symbol in gplot labels</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128113#M4975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Interesting...I don't see this overlap problem in my GPLOT output. What version of SAS do you have?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2012 22:42:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128113#M4975</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2012-11-15T22:42:21Z</dc:date>
    </item>
    <item>
      <title>Re: special symbol in gplot labels</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128114#M4976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just ran the GPLOT example in 9.2 and 9.3, and the output in neither version showed the overlap. Could you have some settings active that could affect your graph rendering? Maybe start a fresh session and see if it still happens.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2012 22:49:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128114#M4976</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2012-11-15T22:49:33Z</dc:date>
    </item>
    <item>
      <title>Re: special symbol in gplot labels</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128115#M4977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe go more old school and avoid the unicode by using one of the SAS GREEK fonts?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2012 23:04:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128115#M4977</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2012-11-15T23:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: special symbol in gplot labels</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128116#M4978</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you show the exact axis statement you're using when you see the overlap?&lt;/P&gt;&lt;P&gt;Is the axis label text horizontal, or angled?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One possible work-around is to insert some extra spaces between the two characters:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;axis1 label=(font="albany amt" 'Here is a mu character:'&lt;/P&gt;&lt;P&gt; font="albany amt/unicode" '03bc'x font="albany amt" '&amp;nbsp; ' font="albany amt/unicode" '006d'x);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc gplot data=sashelp.class;&lt;/P&gt;&lt;P&gt;plot height*weight / haxis=axis1;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2012 14:46:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128116#M4978</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2012-11-16T14:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: special symbol in gplot labels</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128117#M4979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@DanH. I had the SAS 9.2, I tried to restart my SAS, but still keep having this "overlap" style label. I thought I might mess up the goption settings, but after doing a goption reset=all, I still got the following graph.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="out1.png" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/2713_out1.png" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2012 14:48:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128117#M4979</guid>
      <dc:creator>Ken_oy</dc:creator>
      <dc:date>2012-11-16T14:48:14Z</dc:date>
    </item>
    <item>
      <title>Re: special symbol in gplot labels</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128118#M4980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="77982" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt;, Thanks for the advice. I tried your code but still had the sample overlap looking result. &lt;/P&gt;&lt;P&gt;In my Label statement, I used:&lt;/P&gt;&lt;P&gt;axis2 order= 0 to 800 by 100&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; value=(f=arial c=black h=2.5)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; label=( h=3 c=black&amp;nbsp; a=90 font="Arial/unicode" "03bc"x font="albany amt" '&amp;nbsp; ' font="albany amt/unicode" '006d'x )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; minor=none;&lt;/P&gt;&lt;P&gt;I also tested DanH's code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;axis2 order= 0 to 800 by 100&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; value=(f=arial c=black h=2.5)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; label=( h=3 c=black&amp;nbsp; a=90 font="Arial/unicode" "03bc"x "006d"x )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; minor=none;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2012 14:53:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128118#M4980</guid>
      <dc:creator>Ken_oy</dc:creator>
      <dc:date>2012-11-16T14:53:25Z</dc:date>
    </item>
    <item>
      <title>Re: special symbol in gplot labels</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128119#M4981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you using Proc Boxplot, or Proc Gplot (or other)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which output are you using?&amp;nbsp; (dev=png, dev=actximg, dev=javaimg, other?)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2012 14:57:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128119#M4981</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2012-11-16T14:57:57Z</dc:date>
    </item>
    <item>
      <title>Re: special symbol in gplot labels</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128120#M4982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no, I used gplot + %annotate to do those boxplots. Did not use any dev options.&lt;/P&gt;&lt;P&gt;I think it should be my SAS version problem. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2012 15:01:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128120#M4982</guid>
      <dc:creator>Ken_oy</dc:creator>
      <dc:date>2012-11-16T15:01:32Z</dc:date>
    </item>
    <item>
      <title>Re: special symbol in gplot labels</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128121#M4983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What do you get when you run the following?...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;goptions device=png;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;axis1 label=(angle=90 font="albany amt" 'Here is a mu character:&amp;nbsp; '&lt;/P&gt;&lt;P&gt; font="albany amt/unicode" '03bc'x font="albany amt" '&amp;nbsp; ' font="albany amt/unicode" '006d'x);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;axis2 offset=(15,15);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;symbol1 value=circle interpol=boxcti;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc gplot data=sashelp.class;&lt;/P&gt;&lt;P&gt;plot height*sex / vaxis=axis1 haxis=axis2;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2012 15:01:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128121#M4983</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2012-11-16T15:01:48Z</dc:date>
    </item>
    <item>
      <title>Re: special symbol in gplot labels</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128122#M4984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="77982" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt;,&amp;nbsp; here it is. you can see the "mu m' is in the middle of the v-axis&lt;/P&gt;&lt;P&gt;&lt;IMG alt="out1.png" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/2714_out1.png" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2012 15:06:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128122#M4984</guid>
      <dc:creator>Ken_oy</dc:creator>
      <dc:date>2012-11-16T15:06:08Z</dc:date>
    </item>
    <item>
      <title>Re: special symbol in gplot labels</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128123#M4985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yep - it seems that maybe you've got an older version of SAS that had some quirks with angled y-axis text labels ... several small spacing issues were fixed in both 9.2 and 9.3.&amp;nbsp; I would definitely recommend upgrading to 9.3 if possible!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the meantime, perhaps one work-around is to not rotate the y-axis label.&amp;nbsp; With such a short label, it would fit just as well non-rotated (and would be easier to read non-rotated). **This is the work-around I would recommend.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another possible work-around might be to annotate the text for the y-axis label (if you really want it rotated).&amp;nbsp; In the worst-case, you could annotate each character separately, and put them anywhere you want.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2012 15:15:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128123#M4985</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2012-11-16T15:15:06Z</dc:date>
    </item>
    <item>
      <title>Re: special symbol in gplot labels</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128124#M4986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah, I was putting the label on the X axis instead of the Y axis, which would explain why I was not getting the overlap. Since you are running 9.2, and I know what type of plot you're generating, would this work for you?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sgplot data=sashelp.class;&lt;/P&gt;&lt;P&gt;yaxis label="This label contains a (*ESC*){unicode mu}m";&lt;/P&gt;&lt;P&gt;vbox height / category=age;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2012 15:16:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128124#M4986</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2012-11-16T15:16:42Z</dc:date>
    </item>
    <item>
      <title>Re: special symbol in gplot labels</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128125#M4987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And, as ballardw mentioned, you could try the SAS/Graph 'greek' software font.&amp;nbsp; The character won't be smooth/anti-aliased, but it's easier to get the spacing right with the software fonts:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;goptions device=png;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;axis1 label=(angle=90 font=swiss 'Here is a mu character:&amp;nbsp; '&lt;/P&gt;&lt;P&gt;font=greek 'm' font=swiss '&amp;nbsp; m');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;axis2 offset=(15,15);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;symbol1 value=circle interpol=boxcti;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc gplot data=sashelp.class;&lt;/P&gt;&lt;P&gt;plot height*sex / vaxis=axis1 haxis=axis2;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the characters in the SAS/Graph 'greek' software font can be found in a table on the following page:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/graphref/63022/HTML/default/viewer.htm#font-font-lists.htm" title="http://support.sas.com/documentation/cdl/en/graphref/63022/HTML/default/viewer.htm#font-font-lists.htm"&gt;http://support.sas.com/documentation/cdl/en/graphref/63022/HTML/default/viewer.htm#font-font-lists.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2012 15:20:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128125#M4987</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2012-11-16T15:20:50Z</dc:date>
    </item>
    <item>
      <title>Re: special symbol in gplot labels</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128126#M4988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="77982" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Yes, I agree. Using annotate we can do what ever we want in gplot. But the only problem is efficiency. Anyway, I am getting my 9.3 at the end of this month. I already learned about its improvement. Looking forward to having it :smileygrin:. Thanks for the advice again!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2012 15:23:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128126#M4988</guid>
      <dc:creator>Ken_oy</dc:creator>
      <dc:date>2012-11-16T15:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: special symbol in gplot labels</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128127#M4989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="371578" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt;, Yes your code worked in sgplot! thanks! The only reason that I did not use sgplot for my boxplot was that there is no "group" statement in SAS9.2. So still a SAS version problem, lol. But your code will be very useful for the future! thanks!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2012 15:26:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/special-symbol-in-gplot-labels/m-p/128127#M4989</guid>
      <dc:creator>Ken_oy</dc:creator>
      <dc:date>2012-11-16T15:26:04Z</dc:date>
    </item>
  </channel>
</rss>

