<?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: Y Axis Beginning Point in PROC SGPLOT in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Y-Axis-Beginning-Point-in-PROC-SGPLOT/m-p/262997#M9471</link>
    <description>&lt;P&gt;I had attempted the MIN= option however that did not work.&amp;nbsp; But thanks to the insight you gave regarding&amp;nbsp;the multiple Y axis, I eliminated the multiple entires for 1 YAXIS entry and then the MIN= option worked.&amp;nbsp;&amp;nbsp;I had no log issues or notations prior so I did not realize this was the cause for the issue.&amp;nbsp; Thank you again!!&lt;/P&gt;</description>
    <pubDate>Mon, 11 Apr 2016 19:31:22 GMT</pubDate>
    <dc:creator>BLarson</dc:creator>
    <dc:date>2016-04-11T19:31:22Z</dc:date>
    <item>
      <title>Y Axis Beginning Point in PROC SGPLOT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Y-Axis-Beginning-Point-in-PROC-SGPLOT/m-p/262995#M9469</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;Is there a way to set the begining Y axis value in PROC SGPLOT. My minimum value is 1200 in the below and as a result my Y Axis begins with the number 1200, however the ask from the client&amp;nbsp;is to set the Y axis point lower, realizing this will generate more white space.&amp;nbsp; Thank you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC SGPLOT DATA=WORK.HEAPPS_6;
SERIES X=AppMonth_BusDay Y=App5dayAvg / LINEATTRS=(COLOR=BLUE PATTERN=SOLID) LEGENDLABEL='Total 5/Day Avg';
SERIES X=AppMonth_BusDay Y=Forecast / LINEATTRS=(COLOR=BLUE PATTERN=SHORTDASH) LEGENDLABEL='Total FC';
KEYLEGEND / ACROSS=1 DOWN=1 LOCATION=INSIDE POSITION=TOP;
XAXIS LABEL='Month And Business Day' LABELATTRS=(WEIGHT=BOLD FAMILY=Courier);
YAXIS TYPE=LINEAR;
YAXIS LABEL='5 Day Application Avg' LABELATTRS=(WEIGHT=BOLD FAMILY=Courier);
TITLE BOLD 'HE Application Inflow' FONT=Courier;
WHERE (APP_MO &amp;gt;= month(&amp;amp;M1EDTE)) AND (APP_MO &amp;lt;= month(&amp;amp;AODTE)) ;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Apr 2016 19:23:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Y-Axis-Beginning-Point-in-PROC-SGPLOT/m-p/262995#M9469</guid>
      <dc:creator>BLarson</dc:creator>
      <dc:date>2016-04-11T19:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: Y Axis Beginning Point in PROC SGPLOT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Y-Axis-Beginning-Point-in-PROC-SGPLOT/m-p/262996#M9470</link>
      <description>&lt;P&gt;Try either the MIN= or VALUES options available on the YAXIS statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/grstatproc/62603/HTML/default/viewer.htm#xaxis-stmt.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/grstatproc/62603/HTML/default/viewer.htm#xaxis-stmt.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You also have multiple YAXIS statements, I'm not sure how SAS will handle that, usually you only have 1. Does the log mention anything with respect to that?&lt;/P&gt;</description>
      <pubDate>Mon, 11 Apr 2016 19:24:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Y-Axis-Beginning-Point-in-PROC-SGPLOT/m-p/262996#M9470</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-04-11T19:24:19Z</dc:date>
    </item>
    <item>
      <title>Re: Y Axis Beginning Point in PROC SGPLOT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Y-Axis-Beginning-Point-in-PROC-SGPLOT/m-p/262997#M9471</link>
      <description>&lt;P&gt;I had attempted the MIN= option however that did not work.&amp;nbsp; But thanks to the insight you gave regarding&amp;nbsp;the multiple Y axis, I eliminated the multiple entires for 1 YAXIS entry and then the MIN= option worked.&amp;nbsp;&amp;nbsp;I had no log issues or notations prior so I did not realize this was the cause for the issue.&amp;nbsp; Thank you again!!&lt;/P&gt;</description>
      <pubDate>Mon, 11 Apr 2016 19:31:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Y-Axis-Beginning-Point-in-PROC-SGPLOT/m-p/262997#M9471</guid>
      <dc:creator>BLarson</dc:creator>
      <dc:date>2016-04-11T19:31:22Z</dc:date>
    </item>
    <item>
      <title>Re: Y Axis Beginning Point in PROC SGPLOT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Y-Axis-Beginning-Point-in-PROC-SGPLOT/m-p/263040#M9472</link>
      <description>&lt;P&gt;Many procedures will have a behavior of "use last entered option". This corresponds to a not terribly common use of the "interactive mode" which allows a user to submit a few lines, and then a few more and repeat until a "run" or "proc" end of block causes the code to be submitted. In that mode you might realize that you made a mistake and correct the statement before submission. So SAS doesn't create warnings or errors for the re-use of a statement that may only be used once per procedure call.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Apr 2016 21:58:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Y-Axis-Beginning-Point-in-PROC-SGPLOT/m-p/263040#M9472</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-04-11T21:58:57Z</dc:date>
    </item>
    <item>
      <title>Re: Y Axis Beginning Point in PROC SGPLOT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Y-Axis-Beginning-Point-in-PROC-SGPLOT/m-p/263165#M9473</link>
      <description>&lt;P&gt;This has been very beneficial.&amp;nbsp; Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Apr 2016 12:46:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Y-Axis-Beginning-Point-in-PROC-SGPLOT/m-p/263165#M9473</guid>
      <dc:creator>BLarson</dc:creator>
      <dc:date>2016-04-12T12:46:46Z</dc:date>
    </item>
  </channel>
</rss>

