<?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: Remove legend label in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Remove-legend-label/m-p/479650#M16546</link>
    <description>&lt;P&gt;Assuming this is SGPLOT, you can set TITLE="" in the KEYLEGEND statement:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;keylegend / title="";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps!&lt;/P&gt;
&lt;P&gt;Dan&lt;/P&gt;</description>
    <pubDate>Thu, 19 Jul 2018 19:00:58 GMT</pubDate>
    <dc:creator>DanH_sas</dc:creator>
    <dc:date>2018-07-19T19:00:58Z</dc:date>
    <item>
      <title>Remove legend label</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Remove-legend-label/m-p/479649#M16545</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;How can i remove the "tag" in the legend?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SGPlot37.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/21865i17D0E10E920C91DE/image-size/large?v=v2&amp;amp;px=999" role="button" title="SGPlot37.png" alt="SGPlot37.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried already setting label tag=" "; but it didn't worked&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jul 2018 18:57:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Remove-legend-label/m-p/479649#M16545</guid>
      <dc:creator>JB_DataAnalyst</dc:creator>
      <dc:date>2018-07-19T18:57:20Z</dc:date>
    </item>
    <item>
      <title>Re: Remove legend label</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Remove-legend-label/m-p/479650#M16546</link>
      <description>&lt;P&gt;Assuming this is SGPLOT, you can set TITLE="" in the KEYLEGEND statement:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;keylegend / title="";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps!&lt;/P&gt;
&lt;P&gt;Dan&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jul 2018 19:00:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Remove-legend-label/m-p/479650#M16546</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2018-07-19T19:00:58Z</dc:date>
    </item>
    <item>
      <title>Re: Remove legend label</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Remove-legend-label/m-p/479661#M16549</link>
      <description>&lt;P&gt;Thanks Dan,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this is the code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sgplot data=BladderManagementCount;&lt;BR /&gt;Title "Bladder Management";&lt;BR /&gt;yaxis label="Percentage(%)" min=0 max=.5;&lt;BR /&gt;XAXIS DISPLAY=(NOLABEL);&lt;BR /&gt;keylegend / title=" ";&lt;BR /&gt;vbar TimePoint / response=pct2 group=tag groupDisplay=cluster datalabel;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and this is the output&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SGPlot42.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/21867i285C6BEB0261D845/image-size/large?v=v2&amp;amp;px=999" role="button" title="SGPlot42.png" alt="SGPlot42.png" /&gt;&lt;/span&gt;the legend disappears&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jul 2018 19:30:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Remove-legend-label/m-p/479661#M16549</guid>
      <dc:creator>JB_DataAnalyst</dc:creator>
      <dc:date>2018-07-19T19:30:07Z</dc:date>
    </item>
    <item>
      <title>Re: Remove legend label</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Remove-legend-label/m-p/479663#M16550</link>
      <description>&lt;P&gt;Try it this way:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=BladderManagementCount;
Title "Bladder Management";
yaxis label="Percentage(%)" min=0 max=.5;
XAXIS DISPLAY=(NOLABEL);
vbar TimePoint / response=pct2 group=tag groupDisplay=cluster datalabel name="mybar";
keylegend "mybar" / title="";
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 19 Jul 2018 19:32:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Remove-legend-label/m-p/479663#M16550</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2018-07-19T19:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: Remove legend label</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Remove-legend-label/m-p/479713#M16564</link>
      <description>AH! It works!! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Thanks DanH_sas</description>
      <pubDate>Thu, 19 Jul 2018 21:09:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Remove-legend-label/m-p/479713#M16564</guid>
      <dc:creator>JB_DataAnalyst</dc:creator>
      <dc:date>2018-07-19T21:09:07Z</dc:date>
    </item>
  </channel>
</rss>

