<?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: proc template valuerattrs x-axis size in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/proc-template-valuerattrs-x-axis-size/m-p/742983#M232520</link>
    <description>&lt;P&gt;The numbers below the x-axis - from the boxplot.&lt;/P&gt;</description>
    <pubDate>Fri, 21 May 2021 17:29:17 GMT</pubDate>
    <dc:creator>greveam</dc:creator>
    <dc:date>2021-05-21T17:29:17Z</dc:date>
    <item>
      <title>proc template valuerattrs x-axis size</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-template-valuerattrs-x-axis-size/m-p/742929#M232495</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I control x-axis size in proc template (=valueattrs in proc sgplot)? Currently everything is size 10 aside from the xaxis, which is size 7. Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc template;&lt;BR /&gt;define statgraph one;&lt;BR /&gt;begingraph;&lt;BR /&gt;layout lattice / columns=1 rowdatarange=union columngutter=10px;&lt;BR /&gt;rowaxes;&lt;BR /&gt;rowaxis / display=(tickvalues) tickvalueattrs=(size=10);&lt;BR /&gt;endrowaxes;&lt;BR /&gt;layout overlay / walldisplay=none xaxisopts=(tickvalueattrs=(size=10) labelattrs=(size=10))&lt;BR /&gt;xaxisopts=(linearopts=(viewmin=0 viewmax=10)&lt;BR /&gt;griddisplay=on display=(line ticks tickvalues));&lt;BR /&gt;innermargin / align=left;&lt;BR /&gt;axistable y=ObsId=value / showmissing=false valuehalign=center&lt;BR /&gt;headerlabel='Event/Value' HEADERLABELATTRS=(size=10)&lt;BR /&gt;valueattrs=(size=10) labelattrs=(size=10) pad=(right=5pct);&lt;BR /&gt;endinnermargin;&lt;BR /&gt;boxplot y=marker x=Obs / orient=horizontal display=(caps fill mean median) name='a';&lt;BR /&gt;discretelegend "a" / DISPLAYCLIPPED=true title="marker" location=outside valign=top&lt;BR /&gt;halign=center border=false across=1 valueattrs=(color=white size=10) titleattrs=(size=10);&lt;BR /&gt;endlayout;&lt;BR /&gt;endlayout;&lt;BR /&gt;endgraph;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc sgrender data=combined template=one;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Fri, 21 May 2021 15:38:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-template-valuerattrs-x-axis-size/m-p/742929#M232495</guid>
      <dc:creator>greveam</dc:creator>
      <dc:date>2021-05-21T15:38:51Z</dc:date>
    </item>
    <item>
      <title>Re: proc template valuerattrs x-axis size</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-template-valuerattrs-x-axis-size/m-p/742981#M232519</link>
      <description>&lt;P&gt;Size of what?&lt;/P&gt;</description>
      <pubDate>Fri, 21 May 2021 17:25:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-template-valuerattrs-x-axis-size/m-p/742981#M232519</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-05-21T17:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: proc template valuerattrs x-axis size</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-template-valuerattrs-x-axis-size/m-p/742983#M232520</link>
      <description>&lt;P&gt;The numbers below the x-axis - from the boxplot.&lt;/P&gt;</description>
      <pubDate>Fri, 21 May 2021 17:29:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-template-valuerattrs-x-axis-size/m-p/742983#M232520</guid>
      <dc:creator>greveam</dc:creator>
      <dc:date>2021-05-21T17:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: proc template valuerattrs x-axis size</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-template-valuerattrs-x-axis-size/m-p/742985#M232522</link>
      <description>Usually it would the numbers on the y-axis (response variable in boxplot) but I used the orient=horizontal to get the response variable mapped to the x-axis.</description>
      <pubDate>Fri, 21 May 2021 17:36:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-template-valuerattrs-x-axis-size/m-p/742985#M232522</guid>
      <dc:creator>greveam</dc:creator>
      <dc:date>2021-05-21T17:36:25Z</dc:date>
    </item>
    <item>
      <title>Re: proc template valuerattrs x-axis size</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-template-valuerattrs-x-axis-size/m-p/742989#M232526</link>
      <description>&lt;P&gt;Look closely at this bit of your code:&lt;/P&gt;
&lt;PRE&gt;layout overlay / walldisplay=none &lt;FONT color="#FF0000"&gt;xaxisopts=(tickvalueattrs=(size=10) labelattrs=(size=10)&lt;/FONT&gt;)
&lt;FONT color="#0000FF"&gt;xaxisopts=(linearopts=(viewmin=0 viewmax=10)&lt;/FONT&gt;&lt;/PRE&gt;
&lt;P&gt;You have TWO xaxisopts. SAS will use the "latest" or last option set when you provide multiples.&lt;/P&gt;
&lt;P&gt;Make all of the options fit into one xaxisopts and I suspect you will have your solution.&lt;/P&gt;</description>
      <pubDate>Fri, 21 May 2021 17:50:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-template-valuerattrs-x-axis-size/m-p/742989#M232526</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-05-21T17:50:26Z</dc:date>
    </item>
  </channel>
</rss>

