<?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: help needed with legends disapeared when using proc sgpanel to generate stacked bar chart in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/help-needed-with-legends-disapeared-when-using-proc-sgpanel-to/m-p/455246#M15626</link>
    <description>&lt;P&gt;Can you post your data or some of it?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And what your plot looks like now?&lt;/P&gt;</description>
    <pubDate>Wed, 18 Apr 2018 15:18:47 GMT</pubDate>
    <dc:creator>PeterClemmensen</dc:creator>
    <dc:date>2018-04-18T15:18:47Z</dc:date>
    <item>
      <title>help needed with legends disapeared when using proc sgpanel to generate stacked bar chart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/help-needed-with-legends-disapeared-when-using-proc-sgpanel-to/m-p/455240#M15625</link>
      <description>&lt;P&gt;I used proc sgpanel to generate stacked bar charts, the legend didn't show in graph, I think, it maybe due to too many PIDs (about 20).&lt;/P&gt;&lt;P&gt;here is the code, so how can I force SAS to print legend in the graph .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods graphics on;&lt;/P&gt;&lt;P&gt;proc sgpanel data=allo1_20b;&lt;BR /&gt;&amp;nbsp; title 'Top 20 Taxon by patient, ';&lt;BR /&gt;&amp;nbsp;panelby pid / layout=columnlattice novarname noborder colheaderpos=bottom;&lt;BR /&gt;&amp;nbsp; vbar visit1 / response=rab_a group=genus dataskin=gloss grouporder=data ;&lt;BR /&gt;&amp;nbsp; colaxis display=(nolabel);&lt;BR /&gt;&amp;nbsp; rowaxis grid;&lt;BR /&gt;keylegend / title="Type" position=right across=1;&lt;BR /&gt;&amp;nbsp; format visit1 vs.;&lt;BR /&gt;&amp;nbsp; run;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 15:12:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/help-needed-with-legends-disapeared-when-using-proc-sgpanel-to/m-p/455240#M15625</guid>
      <dc:creator>jadet</dc:creator>
      <dc:date>2018-04-18T15:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: help needed with legends disapeared when using proc sgpanel to generate stacked bar chart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/help-needed-with-legends-disapeared-when-using-proc-sgpanel-to/m-p/455246#M15626</link>
      <description>&lt;P&gt;Can you post your data or some of it?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And what your plot looks like now?&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 15:18:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/help-needed-with-legends-disapeared-when-using-proc-sgpanel-to/m-p/455246#M15626</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2018-04-18T15:18:47Z</dc:date>
    </item>
    <item>
      <title>Re: help needed with legends disapeared when using proc sgpanel to generate stacked bar chart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/help-needed-with-legends-disapeared-when-using-proc-sgpanel-to/m-p/455253#M15627</link>
      <description>&lt;P&gt;here are dataset and the output graph without legend, thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 15:33:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/help-needed-with-legends-disapeared-when-using-proc-sgpanel-to/m-p/455253#M15627</guid>
      <dc:creator>jadet</dc:creator>
      <dc:date>2018-04-18T15:33:50Z</dc:date>
    </item>
    <item>
      <title>Re: help needed with legends disapeared when using proc sgpanel to generate stacked bar chart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/help-needed-with-legends-disapeared-when-using-proc-sgpanel-to/m-p/455297#M15628</link>
      <description>&lt;P&gt;If you have too many groups, try increasing the LEGENDAREAMAX on ODS GRAPHICS statement.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://go.documentation.sas.com/?docsetId=odsug&amp;amp;docsetTarget=p0kroq43yu0lspn16hk1u4c65lti.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank"&gt;http://go.documentation.sas.com/?docsetId=odsug&amp;amp;docsetTarget=p0kroq43yu0lspn16hk1u4c65lti.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 16:58:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/help-needed-with-legends-disapeared-when-using-proc-sgpanel-to/m-p/455297#M15628</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2018-04-18T16:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: help needed with legends disapeared when using proc sgpanel to generate stacked bar chart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/help-needed-with-legends-disapeared-when-using-proc-sgpanel-to/m-p/455300#M15629</link>
      <description>thank you, Sanjay_SAS, it worked!</description>
      <pubDate>Wed, 18 Apr 2018 17:05:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/help-needed-with-legends-disapeared-when-using-proc-sgpanel-to/m-p/455300#M15629</guid>
      <dc:creator>jadet</dc:creator>
      <dc:date>2018-04-18T17:05:58Z</dc:date>
    </item>
  </channel>
</rss>

