<?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 GCHART:  Rotate Text for Categorical Variable (x axis) in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-GCHART-Rotate-Text-for-Categorical-Variable-x-axis/m-p/430640#M27798</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt; wrote:&lt;BR /&gt;And just a quick note, that if you're new to SAS and graphing, using SG procedures is a better way to go, in particular SGPLOT. The Graph procedures are limited and don't look as nice.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yes, I agree with this, and furthermore, my opinion is that the SG procedures are easier to use as well. But I'm sure there are many instruction videos/manuals/books that still show SAS/GRAPH and PROC GCHART, these are still supported and can be used.&lt;/P&gt;</description>
    <pubDate>Wed, 24 Jan 2018 19:58:04 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2018-01-24T19:58:04Z</dc:date>
    <item>
      <title>Proc GCHART:  Rotate Text for Categorical Variable (x axis)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-GCHART-Rotate-Text-for-Categorical-Variable-x-axis/m-p/430566#M27789</link>
      <description>&lt;P&gt;New SAS user here.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to generate a basic bar chart displaying average scores. The bars are grouped by&amp;nbsp; "Analyst" names. When I run the code, the graph text displaying the names (Analyst Value) is positioned vertically. How do I rotate the text of the category values to make it readable?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc gchart data=work.qa_data;
	vbar Analyst / type=mean sumvar=Total_Score space=3 width=4;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="img0.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/18084i091C4000BE9F7E41/image-size/large?v=v2&amp;amp;px=999" role="button" title="img0.png" alt="img0.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2018 18:15:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-GCHART-Rotate-Text-for-Categorical-Variable-x-axis/m-p/430566#M27789</guid>
      <dc:creator>jmobball34</dc:creator>
      <dc:date>2018-01-24T18:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GCHART:  Rotate Text for Categorical Variable (x axis)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-GCHART-Rotate-Text-for-Categorical-Variable-x-axis/m-p/430569#M27790</link>
      <description>&lt;P&gt;something like this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;axis1 value=(angle=90);
proc gchart data=work.qa_data;
	vbar Analyst / type=mean sumvar=Total_Score space=3 width=4 maxis=axis1;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 24 Jan 2018 18:24:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-GCHART-Rotate-Text-for-Categorical-Variable-x-axis/m-p/430569#M27790</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-01-24T18:24:10Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GCHART:  Rotate Text for Categorical Variable (x axis)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-GCHART-Rotate-Text-for-Categorical-Variable-x-axis/m-p/430574#M27791</link>
      <description>And just a quick note, that if you're new to SAS and graphing, using SG procedures is a better way to go, in particular SGPLOT. The Graph procedures are limited and don't look as nice.</description>
      <pubDate>Wed, 24 Jan 2018 18:29:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-GCHART-Rotate-Text-for-Categorical-Variable-x-axis/m-p/430574#M27791</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-01-24T18:29:10Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GCHART:  Rotate Text for Categorical Variable (x axis)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-GCHART-Rotate-Text-for-Categorical-Variable-x-axis/m-p/430640#M27798</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt; wrote:&lt;BR /&gt;And just a quick note, that if you're new to SAS and graphing, using SG procedures is a better way to go, in particular SGPLOT. The Graph procedures are limited and don't look as nice.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yes, I agree with this, and furthermore, my opinion is that the SG procedures are easier to use as well. But I'm sure there are many instruction videos/manuals/books that still show SAS/GRAPH and PROC GCHART, these are still supported and can be used.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2018 19:58:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-GCHART-Rotate-Text-for-Categorical-Variable-x-axis/m-p/430640#M27798</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-01-24T19:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GCHART:  Rotate Text for Categorical Variable (x axis)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-GCHART-Rotate-Text-for-Categorical-Variable-x-axis/m-p/430656#M27802</link>
      <description>&lt;P&gt;Adding&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have 30 years of experience with SAS/GRAPH and so I can come up with a lot of SAS/GRAPH plotting code in my sleep. Speed of coding is an advantage to me; and even though I did say I think SG is easier, I'm still learning it.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2018 20:14:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-GCHART-Rotate-Text-for-Categorical-Variable-x-axis/m-p/430656#M27802</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-01-24T20:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GCHART:  Rotate Text for Categorical Variable (x axis)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-GCHART-Rotate-Text-for-Categorical-Variable-x-axis/m-p/430738#M27803</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Adding&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have 30 years of experience with SAS/GRAPH and so I can come up with a lot of SAS/GRAPH plotting code in my sleep. Speed of coding is an advantage to me; and even though I did say I think SG is easier, I'm still learning it.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Quite agree &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&amp;nbsp;and there are still things involving axis appearances, depending on the graph type, I haven't figured out with SG procedures that are available in the Axis statement. I will say I don't miss Symbol very much though and am really learning to love the ATTRMAP possibilities.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jan 2018 00:26:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-GCHART-Rotate-Text-for-Categorical-Variable-x-axis/m-p/430738#M27803</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-01-25T00:26:47Z</dc:date>
    </item>
  </channel>
</rss>

