<?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 Keep scale on one of two axes in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Keep-scale-on-one-of-two-axes/m-p/59347#M6054</link>
    <description>I have multiple graphs that are generated by PROC GPLOT and I would like to keep the same scale on all of the graphs for the y-axis but not the x-axis.  Does anyone know how to do this?&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Brad</description>
    <pubDate>Tue, 04 Nov 2008 19:45:18 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2008-11-04T19:45:18Z</dc:date>
    <item>
      <title>Keep scale on one of two axes</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Keep-scale-on-one-of-two-axes/m-p/59347#M6054</link>
      <description>I have multiple graphs that are generated by PROC GPLOT and I would like to keep the same scale on all of the graphs for the y-axis but not the x-axis.  Does anyone know how to do this?&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Brad</description>
      <pubDate>Tue, 04 Nov 2008 19:45:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Keep-scale-on-one-of-two-axes/m-p/59347#M6054</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-11-04T19:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: Keep scale on one of two axes</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Keep-scale-on-one-of-two-axes/m-p/59348#M6055</link>
      <description>If you are using the EG GUI, you specify the major tick marks when you create a graph.  To specify that the scale is 1-3 will put the following ORDER command into your code.&lt;BR /&gt;
&lt;BR /&gt;
Axis1 ORDER=(1 2 3) ; &lt;BR /&gt;
or &lt;BR /&gt;
Axis1 ORDER=(1 to 3 by 1);&lt;BR /&gt;
&lt;BR /&gt;
If you are running multiple plots through code, just make them all reference the same axis which in the code for a vertical bar graph below is referenced by RAXIS.&lt;BR /&gt;
&lt;BR /&gt;
PROC GCHART DATA=WORK.Sorted;&lt;BR /&gt;
	VBAR3D	 PFL_TYP_CD /&lt;BR /&gt;
	SHAPE=BLOCK  FRAME TYPE=FREQ&lt;BR /&gt;
	COUTLINE=BLACK&lt;BR /&gt;
	RAXIS=AXIS1&lt;BR /&gt;
	MAXIS=AXIS2;&lt;BR /&gt;
RUN; QUIT;</description>
      <pubDate>Fri, 21 Nov 2008 19:29:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Keep-scale-on-one-of-two-axes/m-p/59348#M6055</guid>
      <dc:creator>rab24</dc:creator>
      <dc:date>2008-11-21T19:29:08Z</dc:date>
    </item>
  </channel>
</rss>

