<?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 do i make the tick mark value smaller? in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/How-do-i-make-the-tick-mark-value-smaller/m-p/448392#M15412</link>
    <description>&lt;P&gt;Look what SGPLOT does in this simple example (version 9.4 TS Level 1M5) :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=sashelp.heart;
vbox diastolic / category=ageAtStart;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="SGPlot1.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/19430iA434A615E0A749E8/image-size/large?v=v2&amp;amp;px=999" role="button" title="SGPlot1.png" alt="SGPlot1.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 24 Mar 2018 04:21:27 GMT</pubDate>
    <dc:creator>PGStats</dc:creator>
    <dc:date>2018-03-24T04:21:27Z</dc:date>
    <item>
      <title>How do i make the tick mark value smaller?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-do-i-make-the-tick-mark-value-smaller/m-p/448248#M15407</link>
      <description>&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using gplot to graph my experience data, with x-axis ranger from -1 to 22 by step of 1. Everything work out nicely, however one problem is that I only have limited space&amp;nbsp;across a-axis.&amp;nbsp;for example for double digits number 10, 11, 12... the number is displayed vertically like:&lt;/P&gt;&lt;P&gt;1 1 1&lt;/P&gt;&lt;P&gt;0 1 2&lt;/P&gt;&lt;P&gt;So I am asking how do I make the font smaller that I can fit in all the values horizontally.&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Mar 2018 17:30:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-do-i-make-the-tick-mark-value-smaller/m-p/448248#M15407</guid>
      <dc:creator>ljr4616</dc:creator>
      <dc:date>2018-03-23T17:30:37Z</dc:date>
    </item>
    <item>
      <title>Re: How do i make the tick mark value smaller?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-do-i-make-the-tick-mark-value-smaller/m-p/448249#M15408</link>
      <description>&lt;P&gt;You should use SGPLOT instead of GPLOT, then add an XAXIS statement and you can specify the values a little easier. I would recommend skipping every other one instead of changing the font.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;xaxis values = (-2 to 22 by 2);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;GPLOT is part of SAS/GRAPH and fairly old, the graphics are not as nice and it's harder to work with, which is why I recommend SGPLOT instead.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/190507"&gt;@ljr4616&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hi guys,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am using gplot to graph my experience data, with x-axis ranger from -1 to 22 by step of 1. Everything work out nicely, however one problem is that I only have limited space&amp;nbsp;across a-axis.&amp;nbsp;for example for double digits number 10, 11, 12... the number is displayed vertically like:&lt;/P&gt;
&lt;P&gt;1 1 1&lt;/P&gt;
&lt;P&gt;0 1 2&lt;/P&gt;
&lt;P&gt;So I am asking how do I make the font smaller that I can fit in all the values horizontally.&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Mar 2018 17:35:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-do-i-make-the-tick-mark-value-smaller/m-p/448249#M15408</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-03-23T17:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: How do i make the tick mark value smaller?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-do-i-make-the-tick-mark-value-smaller/m-p/448392#M15412</link>
      <description>&lt;P&gt;Look what SGPLOT does in this simple example (version 9.4 TS Level 1M5) :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=sashelp.heart;
vbox diastolic / category=ageAtStart;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="SGPlot1.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/19430iA434A615E0A749E8/image-size/large?v=v2&amp;amp;px=999" role="button" title="SGPlot1.png" alt="SGPlot1.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 24 Mar 2018 04:21:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-do-i-make-the-tick-mark-value-smaller/m-p/448392#M15412</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2018-03-24T04:21:27Z</dc:date>
    </item>
    <item>
      <title>Re: How do i make the tick mark value smaller?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-do-i-make-the-tick-mark-value-smaller/m-p/449676#M15442</link>
      <description>&lt;P&gt;Here's how to control the font height of the tickmark values along an axis, in gplot:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;axis1 value=(height=1.0pct);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc gplot data=sashelp.class;&lt;BR /&gt;plot height*weight / haxis=axis1;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Mar 2018 14:42:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-do-i-make-the-tick-mark-value-smaller/m-p/449676#M15442</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2018-03-29T14:42:31Z</dc:date>
    </item>
  </channel>
</rss>

