<?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: Printing Subscript on Y axis label using annotation dataset in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Printing-Subscript-on-Y-axis-label-using-annotation-dataset/m-p/915590#M360761</link>
    <description>&lt;P&gt;The reason the label is printing in the middle is that the annotation variables for the X and Y positions are incorrectly named. These reserved variable names must be called X1 and Y1. Some annotations require two coordinates, in which case you would use X1/Y1 and X2/Y2. Let me know if you still have any issues.&lt;/P&gt;</description>
    <pubDate>Mon, 12 Feb 2024 15:30:00 GMT</pubDate>
    <dc:creator>DanH_sas</dc:creator>
    <dc:date>2024-02-12T15:30:00Z</dc:date>
    <item>
      <title>Printing Subscript on Y axis label using annotation dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Printing-Subscript-on-Y-axis-label-using-annotation-dataset/m-p/915189#M360622</link>
      <description>&lt;P&gt;I am trying to print subscript y axis label using annotation dataset as follows,&amp;nbsp;&lt;/P&gt;&lt;P&gt;data anno;&lt;BR /&gt;length label $50;&lt;BR /&gt;ord=1; Function='TEXT'; label="Cmax (ng/mL)" ;&lt;BR /&gt;output;&lt;BR /&gt;ord=2; Function='TEXT'; label="AUC`{sub 24} (h*ng/mL)" ;&lt;BR /&gt;output;&lt;BR /&gt;ord=3; Function='TEXT'; label="AUC`{sub inf} (h*ng/mL)" ;&lt;BR /&gt;output;&lt;BR /&gt;ord=4; Function='TEXT'; label="AUC`{sub last} (h*ng/mL)" ;&lt;BR /&gt;output;&lt;BR /&gt;run;&lt;BR /&gt;data anno;&lt;BR /&gt;set anno;&lt;BR /&gt;x=5; y=50; width=40; xspace='graphpercent' ; yspace='graphpercent'; drawspace='graphpercent';/* anchor= "left" ;*/ id='par';&lt;BR /&gt;rotate=90 ; textsize=9 ; textweight="bold" ;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but it print the on middle of the graph instead of graph area&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="nickpatel_1-1707446259804.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93445i2E0F8C991CAED1F4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="nickpatel_1-1707446259804.png" alt="nickpatel_1-1707446259804.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2024 02:37:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Printing-Subscript-on-Y-axis-label-using-annotation-dataset/m-p/915189#M360622</guid>
      <dc:creator>nickpatel</dc:creator>
      <dc:date>2024-02-09T02:37:56Z</dc:date>
    </item>
    <item>
      <title>Re: Printing Subscript on Y axis label using annotation dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Printing-Subscript-on-Y-axis-label-using-annotation-dataset/m-p/915208#M360630</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
data _anno;
length label $ 200;
 drawspace="layoutpercent"; function="text"; textweight="normal"; textsize=12;textcolor="black"; width=200;
 x1=50; y1=2.5;label="AUC(*ESC*){sub '24'}(h*ng/mL)"; output;
 x1=2.5;  y1=50;rotate=90;label="AUC(*ESC*){sub 'inf'}(h*ng/mL)"; output;
 run;
proc sgplot data=sashelp.heart sganno=_anno noautolegend;   
vbox weight/category=bp_status group=sex;   
xaxis label=' ';
yaxis label=' ';
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1707472066058.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93449iD23BB0329271DD06/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1707472066058.png" alt="Ksharp_0-1707472066058.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2024 09:48:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Printing-Subscript-on-Y-axis-label-using-annotation-dataset/m-p/915208#M360630</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-02-09T09:48:46Z</dc:date>
    </item>
    <item>
      <title>Re: Printing Subscript on Y axis label using annotation dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Printing-Subscript-on-Y-axis-label-using-annotation-dataset/m-p/915215#M360632</link>
      <description>&lt;P&gt;hi Ksharp,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your reply&lt;/P&gt;&lt;P&gt;Apparently it works in sgplot , but with sgrender its still printing in middle of graph instead of in Layout space. I am using following template&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;proc template;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; define statgraph lineplot;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; begingraph;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; layout lattice / columns=1 rows=1 columngutter=5;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; cell;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;layout overlay /&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; yaxisopts=(offsetmin=0.02 offsetmax=0.02&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;type=log display=(line ticks tickvalues&amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;logopts=(base=10 tickintervalstyle=auto)&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;tickvalueattrs=(size=7pt)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;/*label=&amp;amp;ylbl. labelattrs=(size=9pt weight=bold)*/&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; griddisplay=on gridattrs=(color=lightgray pattern=solid thickness=1pt)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; )&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; xaxisopts=(offsetmin=0.02 offsetmax=0.02&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;display=(line ticks tickvalues label) label="Dose (mg)" type=linear&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;linearopts=(viewmin=&amp;amp;minval. tickvaluelist=(&amp;amp;xvalues) tickdisplaylist=(&amp;amp;xcvalues.) )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;tickvalueattrs=(size=8pt)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;labelattrs=(size=9pt weight=bold)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; griddisplay=on gridattrs=(color=lightgray pattern=solid thickness=1pt)&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; /*minorgrid=true minorgridattrs=(color=lightgray pattern=solid thickness=0.5pt)*/)&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;seriesplot x=l10dose y=curve&amp;amp;i/ lineattrs=(thickness=1.3pt color=black);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;seriesplot x=l10dose y=elower&amp;amp;i/ lineattrs=(thickness=1.3pt pattern=dash color=black);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;seriesplot x=l10dose y=eupper&amp;amp;i/ lineattrs=(thickness=1.3pt pattern=dash color=black);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;scatterplot x=l10dose y=aval&amp;amp;i / group=SUBJID groupdisplay=cluster&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;clusterwidth=0&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; markerattrs=(size=4pt color=black symbol=X) name='agtx' ;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;annotate /id='par';&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; drawtext textattrs=(color=black size=7pt) "A power model with 90% confidence interval is presented: Response = exp(&amp;amp;&amp;amp;intercept&amp;amp;i) x Dose^(&amp;amp;&amp;amp;slope&amp;amp;i); 90% CI (&amp;amp;&amp;amp;lcl&amp;amp;i, &amp;amp;&amp;amp;ucl&amp;amp;i)" /&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; width=100 widthunit=percent x=0 y=-1.5 anchor=bottomleft xspace=wallpercent yspace=graphpercent;&lt;/DIV&gt;&lt;DIV&gt;/* drawtext textattrs=(color=black size=9pt ) "&amp;amp;ylbl" / rotate=90*/&lt;/DIV&gt;&lt;DIV&gt;/*&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; width=40 widthunit=percent x=-5 y=25 anchor=center xspace=wallpercent yspace=graphpercent;*/&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; endlayout;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;endcell;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; endlayout;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; endgraph;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; end;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 09 Feb 2024 11:47:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Printing-Subscript-on-Y-axis-label-using-annotation-dataset/m-p/915215#M360632</guid>
      <dc:creator>nickpatel</dc:creator>
      <dc:date>2024-02-09T11:47:50Z</dc:date>
    </item>
    <item>
      <title>Re: Printing Subscript on Y axis label using annotation dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Printing-Subscript-on-Y-axis-label-using-annotation-dataset/m-p/915372#M360676</link>
      <description>&lt;P&gt;Sorry. I am not familiar with GTL.&lt;/P&gt;
&lt;P&gt;Maybe&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4628"&gt;@tc&lt;/a&gt;&amp;nbsp; &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15130"&gt;@DanH_sas&lt;/a&gt;&amp;nbsp;&amp;nbsp;could give you a hand.&lt;/P&gt;</description>
      <pubDate>Sat, 10 Feb 2024 01:43:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Printing-Subscript-on-Y-axis-label-using-annotation-dataset/m-p/915372#M360676</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-02-10T01:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: Printing Subscript on Y axis label using annotation dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Printing-Subscript-on-Y-axis-label-using-annotation-dataset/m-p/915590#M360761</link>
      <description>&lt;P&gt;The reason the label is printing in the middle is that the annotation variables for the X and Y positions are incorrectly named. These reserved variable names must be called X1 and Y1. Some annotations require two coordinates, in which case you would use X1/Y1 and X2/Y2. Let me know if you still have any issues.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2024 15:30:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Printing-Subscript-on-Y-axis-label-using-annotation-dataset/m-p/915590#M360761</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2024-02-12T15:30:00Z</dc:date>
    </item>
    <item>
      <title>Re: Printing Subscript on Y axis label using annotation dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Printing-Subscript-on-Y-axis-label-using-annotation-dataset/m-p/915746#M360802</link>
      <description>&lt;P&gt;After I checked the DOC , and get right graph .&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data anno;
length label $ 200;
id="BAR";
 drawspace="graphpercent"; function="text"; textweight="normal"; textsize=12;textcolor="black"; width=200;
 x1=50; y1=2.5;label="AUC(*ESC*){sub '24'}(h*ng/mL)"; output;
 x1=2.5;  y1=50;rotate=90;label="AUC(*ESC*){sub 'inf'}(h*ng/mL)"; output;
 run;
proc template;
define statgraph anno;
begingraph;
entrytitle "Vehicle Statistics";
layout lattice / columns=2 columngutter=10 pad=(left=15);

layout overlay /
xaxisopts=(offsetmin=0.2 offsetmax=0.2)
yaxisopts=(display=none);
/* Draw the barchart of origin and MPG city */
barchart x=origin y=mpg_city / name="bar" stat=mean
group=type groupdisplay=cluster clusterwidth=0.7
dataskin=sheen;
annotate / id="BAR"; /* Draw the barchart label. */
endlayout;

layout overlay /
y2axisopts=(display=(ticks tickvalues));
/* Draw the histogram of MPG city */
histogram mpg_city / dataskin=sheen yaxis=y2;
densityplot mpg_city / yaxis=y2;
annotate / id="HIST"; /* Draw the histogram label. */
endlayout;

endlayout;
endgraph;
end;
run;
/* Render the graph with the annotation */
proc sgrender data=sashelp.cars template=anno sganno=anno;
where type in ("Sedan" "Sports" "SUV");
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1707791789428.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93606i57F553B84936A8D4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1707791789428.png" alt="Ksharp_0-1707791789428.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2024 02:36:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Printing-Subscript-on-Y-axis-label-using-annotation-dataset/m-p/915746#M360802</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-02-13T02:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: Printing Subscript on Y axis label using annotation dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Printing-Subscript-on-Y-axis-label-using-annotation-dataset/m-p/915803#M360828</link>
      <description>&lt;P&gt;Hi Dan,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, by changing to x1= &amp;amp; Y1= has fix the issue...Thank you for suggestion. One more question here please? I have tried different method by creating the macro variable contains the unicode for yaxis label and pass thought macro loop. But why the Unicode is not supported for letters a-z ?&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2024 13:17:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Printing-Subscript-on-Y-axis-label-using-annotation-dataset/m-p/915803#M360828</guid>
      <dc:creator>nickpatel</dc:creator>
      <dc:date>2024-02-13T13:17:39Z</dc:date>
    </item>
    <item>
      <title>Re: Printing Subscript on Y axis label using annotation dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Printing-Subscript-on-Y-axis-label-using-annotation-dataset/m-p/915804#M360829</link>
      <description>HI Ksharp,&lt;BR /&gt;Yes indeed changing to X1= &amp;amp; Y1= , it would resolve the issue...&lt;BR /&gt;&lt;BR /&gt;Thank you,&lt;BR /&gt;Nick</description>
      <pubDate>Tue, 13 Feb 2024 13:23:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Printing-Subscript-on-Y-axis-label-using-annotation-dataset/m-p/915804#M360829</guid>
      <dc:creator>nickpatel</dc:creator>
      <dc:date>2024-02-13T13:23:09Z</dc:date>
    </item>
    <item>
      <title>Re: Printing Subscript on Y axis label using annotation dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Printing-Subscript-on-Y-axis-label-using-annotation-dataset/m-p/915872#M360836</link>
      <description>&lt;P&gt;The Unicode specification for subscripts does not support all a-z characters (see&amp;nbsp;&lt;A title="Unicode Superscripts and Subscripts" href="https://en.wikipedia.org/wiki/Unicode_subscripts_and_superscripts" target="_self"&gt;Unicode Superscripts and Subscripts&lt;/A&gt;). In addition, for most of those subscript characters in the specification, you will need to choose a "full-featured" Unicode font, i.e. a font that has most of the Unicode glyphs. Otherwise, the character will render as a box. A good sans-serif font to use is "Arial Unicode MS". Let me know if that works okay for you.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2024 16:02:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Printing-Subscript-on-Y-axis-label-using-annotation-dataset/m-p/915872#M360836</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2024-02-13T16:02:00Z</dc:date>
    </item>
  </channel>
</rss>

