<?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 proc sgpanel  how to change font size of keylegend in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-how-to-change-font-size-of-keylegend/m-p/359834#M12554</link>
    <description>&lt;P&gt;I want to change the font size of keylegeng &amp;nbsp;in sgpanel how to do that?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 18 May 2017 21:46:50 GMT</pubDate>
    <dc:creator>goodlife9</dc:creator>
    <dc:date>2017-05-18T21:46:50Z</dc:date>
    <item>
      <title>proc sgpanel  how to change font size of keylegend</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-how-to-change-font-size-of-keylegend/m-p/359834#M12554</link>
      <description>&lt;P&gt;I want to change the font size of keylegeng &amp;nbsp;in sgpanel how to do that?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 May 2017 21:46:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-how-to-change-font-size-of-keylegend/m-p/359834#M12554</guid>
      <dc:creator>goodlife9</dc:creator>
      <dc:date>2017-05-18T21:46:50Z</dc:date>
    </item>
    <item>
      <title>Re: proc sgpanel  how to change font size of keylegend</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-how-to-change-font-size-of-keylegend/m-p/359863#M12555</link>
      <description>&lt;P&gt;To change the font size of the value labels in the legend, use VALUEATTRS= .&amp;nbsp; To change the font size of the title of the legend, use TITLEATTRS= .&amp;nbsp;&amp;nbsp; The code below modifies Example 4 from the online documentation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;* this is Example 4: Creating a Panel of Line Charts
* from SAS 9.4 ODS Graphics: Procedures Guide, Sixth
* Edition, SGPANEL Procedure. ;

proc sgpanel data=sashelp.prdsale;
  where product in ("CHAIR" "SOFA");
  title "Yearly Sales by Product";
  panelby year / spacing=5 novarname;
  vline month / response=actual group=product;
  title 'Default font size for keylegend';
run;
title;

proc sgpanel data=sashelp.prdsale;
  where product in ("CHAIR" "SOFA");
  title "Yearly Sales by Product";
  panelby year / spacing=5 novarname;
  vline month / response=actual group=product;
  keylegend / title="Product"
              titleattrs=(Size=14) 
              valueattrs=(Family=Arial Size=14);
  title 'TITLEATTRS= changes size of font for title of legend';
  title2 'VALUEATTRS= changes size of legend value labels';
run;
title;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 19 May 2017 00:44:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-sgpanel-how-to-change-font-size-of-keylegend/m-p/359863#M12555</guid>
      <dc:creator>SuzanneDorinski</dc:creator>
      <dc:date>2017-05-19T00:44:01Z</dc:date>
    </item>
  </channel>
</rss>

