<?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: Pesky warning about discretelegend getting clipped in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Pesky-warning-about-discretelegend-getting-clipped/m-p/726039#M225597</link>
    <description>I think axis table was taking up too much space. I asked SAS technical support and she told me to increase the height to 7.5 inches. That seemed to fix it and still keep the legend.</description>
    <pubDate>Sat, 13 Mar 2021 11:44:43 GMT</pubDate>
    <dc:creator>tarheel13</dc:creator>
    <dc:date>2021-03-13T11:44:43Z</dc:date>
    <item>
      <title>Pesky warning about discretelegend getting clipped</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pesky-warning-about-discretelegend-getting-clipped/m-p/725412#M225318</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;title1 "Graph 2B: Mean BMI Over Time by GOLD Status";
Title2 "Only Participants Through Visit 4 Who Completed All Four Visits";
title3 "Table with Participant Counts";
proc sgplot data=meanoutgold2b;
	format visit visf. GOLD $goldf.;
	series  x=visit y=Mean / group=GOLD markers;
	xaxistable N / class=GOLD colorgroup=GOLD
               title="Number of Participants" ;
	yaxis label="Mean BMI";
	xaxis display=(nolabel) values=(1 to 4 by 1);
run;
title1;
title2;
title3;
footnote2 "Omitting Groups Where N &amp;lt; 3";&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;WARNING: DISCRETELEGEND statement with DISPLAYCLIPPED=FALSE is getting clipped. The legend will not be drawn.&lt;BR /&gt;NOTE: There were 19 observations read from the data set WORK.MEANOUTGOLD2B.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How do I get rid of this warning? I did ods trace. I'm not using a template.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 12:08:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pesky-warning-about-discretelegend-getting-clipped/m-p/725412#M225318</guid>
      <dc:creator>tarheel13</dc:creator>
      <dc:date>2021-03-11T12:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: Pesky warning about discretelegend getting clipped</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pesky-warning-about-discretelegend-getting-clipped/m-p/725414#M225320</link>
      <description>Try noautolegend option.&lt;BR /&gt;proc sgplot data=meanoutgold2b noautolegend ;</description>
      <pubDate>Thu, 11 Mar 2021 12:14:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pesky-warning-about-discretelegend-getting-clipped/m-p/725414#M225320</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-03-11T12:14:39Z</dc:date>
    </item>
    <item>
      <title>Re: Pesky warning about discretelegend getting clipped</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pesky-warning-about-discretelegend-getting-clipped/m-p/725416#M225322</link>
      <description>&lt;P&gt;Use the SGPLOT option NOAUTOLEGEND.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;proc sgplot data=meanoutgold2b NOAUTOLEGEND;&lt;/PRE&gt;</description>
      <pubDate>Thu, 11 Mar 2021 12:26:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pesky-warning-about-discretelegend-getting-clipped/m-p/725416#M225322</guid>
      <dc:creator>RichardDeVen</dc:creator>
      <dc:date>2021-03-11T12:26:38Z</dc:date>
    </item>
    <item>
      <title>Re: Pesky warning about discretelegend getting clipped</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pesky-warning-about-discretelegend-getting-clipped/m-p/725417#M225323</link>
      <description>Cool, it worked!</description>
      <pubDate>Thu, 11 Mar 2021 12:28:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pesky-warning-about-discretelegend-getting-clipped/m-p/725417#M225323</guid>
      <dc:creator>tarheel13</dc:creator>
      <dc:date>2021-03-11T12:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: Pesky warning about discretelegend getting clipped</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pesky-warning-about-discretelegend-getting-clipped/m-p/725535#M225381</link>
      <description>&lt;P&gt;I want the legend though. I just don't want the warning in the log.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 17:41:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pesky-warning-about-discretelegend-getting-clipped/m-p/725535#M225381</guid>
      <dc:creator>tarheel13</dc:creator>
      <dc:date>2021-03-11T17:41:35Z</dc:date>
    </item>
    <item>
      <title>Re: Pesky warning about discretelegend getting clipped</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pesky-warning-about-discretelegend-getting-clipped/m-p/725754#M225492</link>
      <description>Can you post the data and let us to test your code ?</description>
      <pubDate>Fri, 12 Mar 2021 11:07:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pesky-warning-about-discretelegend-getting-clipped/m-p/725754#M225492</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-03-12T11:07:39Z</dc:date>
    </item>
    <item>
      <title>Re: Pesky warning about discretelegend getting clipped</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pesky-warning-about-discretelegend-getting-clipped/m-p/726039#M225597</link>
      <description>I think axis table was taking up too much space. I asked SAS technical support and she told me to increase the height to 7.5 inches. That seemed to fix it and still keep the legend.</description>
      <pubDate>Sat, 13 Mar 2021 11:44:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pesky-warning-about-discretelegend-getting-clipped/m-p/726039#M225597</guid>
      <dc:creator>tarheel13</dc:creator>
      <dc:date>2021-03-13T11:44:43Z</dc:date>
    </item>
  </channel>
</rss>

