<?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: Manipulate axis title in graph in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Manipulate-axis-title-in-graph/m-p/385280#M13205</link>
    <description>&lt;P&gt;This is the graph I am looking for with a space betwee the word "frequency" and the Y-axis.&lt;/P&gt;</description>
    <pubDate>Thu, 03 Aug 2017 13:19:25 GMT</pubDate>
    <dc:creator>sas_user4</dc:creator>
    <dc:date>2017-08-03T13:19:25Z</dc:date>
    <item>
      <title>Manipulate axis title in graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Manipulate-axis-title-in-graph/m-p/385166#M13197</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;I have this graph created by this code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;PROC&lt;/STRONG&gt; &lt;STRONG&gt;SGPLOT&lt;/STRONG&gt; DATA = new;&lt;/P&gt;
&lt;P&gt;VBAR country / GROUP = model;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;RUN&lt;/STRONG&gt;;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How can I change the direction of the Y-axis title from vertical to horizontal?&lt;/P&gt;</description>
      <pubDate>Thu, 03 Aug 2017 03:04:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Manipulate-axis-title-in-graph/m-p/385166#M13197</guid>
      <dc:creator>sas_user4</dc:creator>
      <dc:date>2017-08-03T03:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: Manipulate axis title in graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Manipulate-axis-title-in-graph/m-p/385174#M13198</link>
      <description>try the yaxis labelpos option as below&lt;BR /&gt;&lt;BR /&gt;PROC SGPLOT DATA = new;&lt;BR /&gt;VBAR country / GROUP = model;&lt;BR /&gt;yaxis LABELPOS=CENTER ;&lt;BR /&gt;RUN;</description>
      <pubDate>Thu, 03 Aug 2017 03:41:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Manipulate-axis-title-in-graph/m-p/385174#M13198</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2017-08-03T03:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: Manipulate axis title in graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Manipulate-axis-title-in-graph/m-p/385264#M13202</link>
      <description>Thanks Jag. I tried your code but it did not make a difference. What I need is to make the alignment of the Y-axis (the word "frequency") horizontally instead of vertically.</description>
      <pubDate>Thu, 03 Aug 2017 12:38:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Manipulate-axis-title-in-graph/m-p/385264#M13202</guid>
      <dc:creator>sas_user4</dc:creator>
      <dc:date>2017-08-03T12:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: Manipulate axis title in graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Manipulate-axis-title-in-graph/m-p/385266#M13203</link>
      <description>&lt;P&gt;I think JAG meant to say&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;yaxis LABELPOS=TOP;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Aug 2017 12:41:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Manipulate-axis-title-in-graph/m-p/385266#M13203</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-08-03T12:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: Manipulate axis title in graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Manipulate-axis-title-in-graph/m-p/385270#M13204</link>
      <description>&lt;P&gt;yaxis LABELPOS=TOP ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I used the above statement, it worked but still I need to make a space between the word "frequency" and the axis, not to be exactly above the axis. Need to make space betwee the two.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Aug 2017 12:43:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Manipulate-axis-title-in-graph/m-p/385270#M13204</guid>
      <dc:creator>sas_user4</dc:creator>
      <dc:date>2017-08-03T12:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: Manipulate axis title in graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Manipulate-axis-title-in-graph/m-p/385280#M13205</link>
      <description>&lt;P&gt;This is the graph I am looking for with a space betwee the word "frequency" and the Y-axis.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Aug 2017 13:19:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Manipulate-axis-title-in-graph/m-p/385280#M13205</guid>
      <dc:creator>sas_user4</dc:creator>
      <dc:date>2017-08-03T13:19:25Z</dc:date>
    </item>
    <item>
      <title>Re: Manipulate axis title in graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Manipulate-axis-title-in-graph/m-p/385282#M13206</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="g.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/14302i7D8F7F6D7E628493/image-size/large?v=v2&amp;amp;px=999" role="button" title="g.jpg" alt="g.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Aug 2017 13:20:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Manipulate-axis-title-in-graph/m-p/385282#M13206</guid>
      <dc:creator>sas_user4</dc:creator>
      <dc:date>2017-08-03T13:20:45Z</dc:date>
    </item>
  </channel>
</rss>

