<?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: how can I change size of letters in legend and graphs in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/how-can-I-change-size-of-letters-in-legend-and-graphs/m-p/636171#M19698</link>
    <description>&lt;P&gt;To change the appearance of text on axis and legends check for the appearance options in the doc.&lt;/P&gt;
&lt;P&gt;To insert text you can use the INSET statement.&lt;/P&gt;
&lt;P&gt;See also example below&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;BR /&gt;proc sgplot data=Microbiolog;&lt;BR /&gt;vbox AWCD / Group=Species category=Age_class;&lt;BR /&gt;inset (&lt;BR /&gt;"Confidence level (*ESC*){unicode alpha} =" = "0.05"&lt;BR /&gt;"some label" = "some value"&lt;BR /&gt;)&lt;BR /&gt;;&lt;BR /&gt;xaxis discreteorder=data&lt;BR /&gt;labelattrs=(color=red size=20pt)&lt;BR /&gt;valueattrs=(color=green size=15pt)&lt;BR /&gt;;&lt;BR /&gt;keylegend /&lt;BR /&gt;valueattrs=(color=blue size=10pt)&lt;BR /&gt;titleattrs=(color=black size=20pt)&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/PRE&gt;
&lt;P&gt;Also check out this blog entry for more details:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/sgf/2017/09/15/proc-sgplot-theres-an-attrs-for-that/" target="_blank"&gt;https://blogs.sas.com/content/sgf/2017/09/15/proc-sgplot-theres-an-attrs-for-that/&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 31 Mar 2020 11:17:01 GMT</pubDate>
    <dc:creator>BrunoMueller</dc:creator>
    <dc:date>2020-03-31T11:17:01Z</dc:date>
    <item>
      <title>how can I change size of letters in legend and graphs</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/how-can-I-change-size-of-letters-in-legend-and-graphs/m-p/636163#M19697</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;how to increase the size of letters and numbers in axes and legend and how to put letters from Anova Tukey test letters into a graph&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;data Microbiolog;&lt;BR /&gt;input Species $ Age_class AWCD ;&lt;BR /&gt;datalines;&lt;BR /&gt;pm 2 0.620742294&lt;BR /&gt;pm 2 0.588027599&lt;BR /&gt;pm 2 0.578838351&lt;BR /&gt;ps 2 0.694835125&lt;BR /&gt;ps 2 0.648453047&lt;BR /&gt;ps 2 0.652307527&lt;BR /&gt;pm 5 0.60991129&lt;BR /&gt;pm 5 0.618360753&lt;BR /&gt;pm 5 0.596767204&lt;BR /&gt;ps 5 0.646184946&lt;BR /&gt;ps 5 0.63157043&lt;BR /&gt;ps 5 0.636995161&lt;BR /&gt;pm 11 0.667849462&lt;BR /&gt;pm 11 0.586395699&lt;BR /&gt;pm 11 0.577059677&lt;BR /&gt;ps 11 0.836491398&lt;BR /&gt;ps 11 0.841095161&lt;BR /&gt;ps 11 0.777258602&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;proc sgplot data=Microbiolog;&lt;BR /&gt;vbox AWCD / Group=Species category=Age_class;&lt;BR /&gt;xaxis discreteorder=data;&lt;BR /&gt;run;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Mar 2020 10:46:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/how-can-I-change-size-of-letters-in-legend-and-graphs/m-p/636163#M19697</guid>
      <dc:creator>Girmante</dc:creator>
      <dc:date>2020-03-31T10:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: how can I change size of letters in legend and graphs</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/how-can-I-change-size-of-letters-in-legend-and-graphs/m-p/636171#M19698</link>
      <description>&lt;P&gt;To change the appearance of text on axis and legends check for the appearance options in the doc.&lt;/P&gt;
&lt;P&gt;To insert text you can use the INSET statement.&lt;/P&gt;
&lt;P&gt;See also example below&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;BR /&gt;proc sgplot data=Microbiolog;&lt;BR /&gt;vbox AWCD / Group=Species category=Age_class;&lt;BR /&gt;inset (&lt;BR /&gt;"Confidence level (*ESC*){unicode alpha} =" = "0.05"&lt;BR /&gt;"some label" = "some value"&lt;BR /&gt;)&lt;BR /&gt;;&lt;BR /&gt;xaxis discreteorder=data&lt;BR /&gt;labelattrs=(color=red size=20pt)&lt;BR /&gt;valueattrs=(color=green size=15pt)&lt;BR /&gt;;&lt;BR /&gt;keylegend /&lt;BR /&gt;valueattrs=(color=blue size=10pt)&lt;BR /&gt;titleattrs=(color=black size=20pt)&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/PRE&gt;
&lt;P&gt;Also check out this blog entry for more details:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/sgf/2017/09/15/proc-sgplot-theres-an-attrs-for-that/" target="_blank"&gt;https://blogs.sas.com/content/sgf/2017/09/15/proc-sgplot-theres-an-attrs-for-that/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Mar 2020 11:17:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/how-can-I-change-size-of-letters-in-legend-and-graphs/m-p/636171#M19698</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2020-03-31T11:17:01Z</dc:date>
    </item>
  </channel>
</rss>

