<?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: Specify location of datalabels in sgplot in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Specify-location-of-datalabels-in-sgplot/m-p/89838#M3312</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know how to change the location of the data labels &lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://communities.sas.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, to modify the first data label so that instead of a '1' to get '1 [Reference]'&lt;/P&gt;&lt;P&gt;this is what i suggest:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data x;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set x;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if hr = 1 &amp;amp; ucl = 1 &amp;amp; lcl = 1 then label = . ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else label = hr;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*more of your code*/&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;/*Then I changed the datalabel value to the 'label' variable:*/&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sgplot data=x noautolegend tmplout = "&amp;amp;plot_path.\tmpl.sas";&lt;/P&gt;&lt;P&gt;&amp;nbsp; scatter y=hr x=ct /yerrorupper=ucl yerrorlower=lcl&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; datalabel=&lt;STRONG&gt;label&lt;/STRONG&gt; datalabelattrs = (size=10 color=black)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; markerattrs=(size=10 symbol=squarefilled color=black)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; errorbarattrs=(color=black);&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;refline 1/ label=("1 [Reference]")axis = y labelloc = inside labelpos = min;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;yaxis minor values=(0.1 to 2.3 by 0.3) label='Hazard Ratio';&lt;/P&gt;&lt;P&gt;xaxis minor values=(1 to 4 by 1) label='BMI' ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anca.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Jan 2013 18:52:41 GMT</pubDate>
    <dc:creator>AncaTilea</dc:creator>
    <dc:date>2013-01-29T18:52:41Z</dc:date>
    <item>
      <title>Specify location of datalabels in sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Specify-location-of-datalabels-in-sgplot/m-p/89837#M3311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I am trying to change the location of the datalabels in my plot so that they appear on top of the CIs instead of being at the center (to make nicer graphs) but I cannot find a way to do it.&lt;/P&gt;&lt;P&gt;I also want to modify the first datalabel so that instead of a '1' I can write '1 [Reference]' Is this option available in SAS 9.3? Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data x;&lt;/P&gt;&lt;P&gt;input ct ucl lcl hr;&lt;/P&gt;&lt;P&gt;cards ;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&amp;nbsp; 0.3&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1.8&amp;nbsp;&amp;nbsp; 0.1&amp;nbsp; 0.9&lt;/P&gt;&lt;P&gt;4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1.6&amp;nbsp; 0.2&amp;nbsp; 0.8&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc template;&lt;/P&gt;&lt;P&gt;Define style styles.mystyle;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Parent=styles.journal;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Style GraphTitleText / color=black fontsize=13pt fontfamily="swiss" fontweight=bold;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Style GraphValueText / color=black fontsize=10pt fontfamily="swiss" fontweight=medium;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Style GraphLabelText / color=black fontsize=10pt fontfamily="swiss" fontweight=medium;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; style GraphDataText from GraphDataText /fontsize=10pt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;ods html style=mystyle;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;title "Mortality by BMI categories";&lt;/P&gt;&lt;P&gt;*title2 'Hazards Ratio and 95% CI';&lt;/P&gt;&lt;P&gt;proc sgplot data=x noautolegend; &lt;/P&gt;&lt;P&gt;&amp;nbsp; scatter y=hr x=ct / &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; yerrorupper=ucl yerrorlower=lcl&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; datalabel=hr markerattrs=(size=10 symbol=squarefilled color=black)&lt;/P&gt;&lt;P&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; errorbarattrs=(color=black);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; refline 1&amp;nbsp; / axis=y;&lt;/P&gt;&lt;P&gt;yaxis minor values=(0.1 to 2.3 by 0.3) label='Hazard Ratio';&lt;/P&gt;&lt;P&gt;xaxis minor values=(1 to 4 by 1) label='BMI' ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2013 17:55:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Specify-location-of-datalabels-in-sgplot/m-p/89837#M3311</guid>
      <dc:creator>AM2323</dc:creator>
      <dc:date>2013-01-29T17:55:43Z</dc:date>
    </item>
    <item>
      <title>Re: Specify location of datalabels in sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Specify-location-of-datalabels-in-sgplot/m-p/89838#M3312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know how to change the location of the data labels &lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://communities.sas.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, to modify the first data label so that instead of a '1' to get '1 [Reference]'&lt;/P&gt;&lt;P&gt;this is what i suggest:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data x;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set x;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if hr = 1 &amp;amp; ucl = 1 &amp;amp; lcl = 1 then label = . ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else label = hr;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*more of your code*/&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;/*Then I changed the datalabel value to the 'label' variable:*/&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sgplot data=x noautolegend tmplout = "&amp;amp;plot_path.\tmpl.sas";&lt;/P&gt;&lt;P&gt;&amp;nbsp; scatter y=hr x=ct /yerrorupper=ucl yerrorlower=lcl&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; datalabel=&lt;STRONG&gt;label&lt;/STRONG&gt; datalabelattrs = (size=10 color=black)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; markerattrs=(size=10 symbol=squarefilled color=black)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; errorbarattrs=(color=black);&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;refline 1/ label=("1 [Reference]")axis = y labelloc = inside labelpos = min;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;yaxis minor values=(0.1 to 2.3 by 0.3) label='Hazard Ratio';&lt;/P&gt;&lt;P&gt;xaxis minor values=(1 to 4 by 1) label='BMI' ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anca.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2013 18:52:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Specify-location-of-datalabels-in-sgplot/m-p/89838#M3312</guid>
      <dc:creator>AncaTilea</dc:creator>
      <dc:date>2013-01-29T18:52:41Z</dc:date>
    </item>
    <item>
      <title>Re: Specify location of datalabels in sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Specify-location-of-datalabels-in-sgplot/m-p/89839#M3313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can put the labels over the UCL by making two changes:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. In the data step, make two columns for label position and label content. The label position is derived from the UCL value.&lt;/P&gt;&lt;P&gt;data x;&lt;/P&gt;&lt;P&gt;input ct ucl lcl hr;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if (ucl = hr) then labelpos = ucl + 0.05;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;else labelpos = ucl + 0.025;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;label = put(hr, 3.1);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;cards ;&lt;/P&gt;&lt;P&gt;1&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;2&amp;nbsp; 2&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.3&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;3&amp;nbsp; 1.8&amp;nbsp; 0.1&amp;nbsp; 0.9&lt;/P&gt;&lt;P&gt;4&amp;nbsp; 1.6&amp;nbsp; 0.2&amp;nbsp; 0.8&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Instead of using the DATALABEL option on the scatter plot, add another scatter plot with the MARKERCHAR option to plot the label over the UCL.&lt;/P&gt;&lt;P&gt;proc sgplot data=x noautolegend;&lt;/P&gt;&lt;P&gt;&amp;nbsp; scatter y=hr x=ct /&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; yerrorupper=ucl yerrorlower=lcl&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; markerattrs=(size=10 symbol=squarefilled color=black)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; errorbarattrs=(color=black);&lt;/P&gt;&lt;P&gt;&amp;nbsp; refline 1&amp;nbsp; / axis=y;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;STRONG&gt;scatter y=labelpos x=ct / markerchar=label;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; yaxis minor values=(0.1 to 2.3 by 0.3) label='Hazard Ratio';&lt;/P&gt;&lt;P&gt;&amp;nbsp; xaxis minor values=(1 to 4 by 1) label='BMI' ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As for the content of the first label, you can modify the first value in the "label" column in the data step processing.&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>Tue, 29 Jan 2013 18:58:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Specify-location-of-datalabels-in-sgplot/m-p/89839#M3313</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2013-01-29T18:58:40Z</dc:date>
    </item>
    <item>
      <title>Re: Specify location of datalabels in sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Specify-location-of-datalabels-in-sgplot/m-p/89840#M3314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use a different column for labels.&amp;nbsp; Also you could compute the location just above the ucl, as long as you are ok setting the value in data coordinates.&amp;nbsp; If the first one is really a reference value, it need not be in the data, and you can use a reference line as suggested by Anca.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="ScatterLabel1.png" class="jive-image" src="https://communities.sas.com/legacyfs/online/3047_ScatterLabel1.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data x;&lt;/P&gt;&lt;P&gt;length hrlabel $15;&lt;/P&gt;&lt;P&gt;input ct ucl lcl hr;&lt;/P&gt;&lt;P&gt;hrlabel=put(hr, 3.1);&lt;/P&gt;&lt;P&gt;if _n_ = 1 then hrlabel="1 [Reference]";&lt;/P&gt;&lt;P&gt;labelloc=ucl+0.1;&lt;/P&gt;&lt;P&gt;cards ;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&amp;nbsp; 0.3&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1.8&amp;nbsp;&amp;nbsp; 0.1&amp;nbsp; 0.9&lt;/P&gt;&lt;P&gt;4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1.6&amp;nbsp; 0.2&amp;nbsp; 0.8&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;proc print; run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc template;&lt;/P&gt;&lt;P&gt;Define style styles.mystyle;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Parent=styles.journal;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Style GraphTitleText / color=black fontsize=13pt fontfamily="swiss" fontweight=bold;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Style GraphValueText / color=black fontsize=10pt fontfamily="swiss" fontweight=medium;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Style GraphLabelText / color=black fontsize=10pt fontfamily="swiss" fontweight=medium;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; style GraphDataText from GraphDataText /fontsize=10pt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;ods html style=mystyle;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods listing close;&lt;/P&gt;&lt;P&gt;ods listing;footnote;&lt;/P&gt;&lt;P&gt;title "Mortality by BMI categories";&lt;/P&gt;&lt;P&gt;*title2 'Hazards Ratio and 95% CI';&lt;/P&gt;&lt;P&gt;proc sgplot data=x noautolegend; &lt;/P&gt;&lt;P&gt;&amp;nbsp; scatter y=hr x=ct / &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; yerrorupper=ucl yerrorlower=lcl&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; markerattrs=(size=10 symbol=squarefilled color=black)&lt;/P&gt;&lt;P&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; errorbarattrs=(color=black);&lt;/P&gt;&lt;P&gt;&amp;nbsp; scatter x=ct y=labelloc / markercharacter=hrlabel;&lt;/P&gt;&lt;P&gt;&amp;nbsp; refline 1&amp;nbsp; / axis=y;&lt;/P&gt;&lt;P&gt;&amp;nbsp; yaxis minor values=(0.1 to 2.3 by 0.3) label='Hazard Ratio';&lt;/P&gt;&lt;P&gt;&amp;nbsp; xaxis minor values=(1 to 4 by 1) label='BMI' ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2013 19:00:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Specify-location-of-datalabels-in-sgplot/m-p/89840#M3314</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2013-01-29T19:00:31Z</dc:date>
    </item>
    <item>
      <title>Re: Specify location of datalabels in sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Specify-location-of-datalabels-in-sgplot/m-p/89841#M3315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Anca, Dan, and Sanjay. Problem solved and nice graphs ready to present!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2013 19:25:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Specify-location-of-datalabels-in-sgplot/m-p/89841#M3315</guid>
      <dc:creator>AM2323</dc:creator>
      <dc:date>2013-01-29T19:25:57Z</dc:date>
    </item>
  </channel>
</rss>

