<?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: Remove gridlines in Proc SGPLOT in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Remove-gridlines-in-Proc-SGPLOT/m-p/708464#M20839</link>
    <description>Thanks a bunch!! It worked.</description>
    <pubDate>Mon, 28 Dec 2020 19:42:45 GMT</pubDate>
    <dc:creator>Daisy2</dc:creator>
    <dc:date>2020-12-28T19:42:45Z</dc:date>
    <item>
      <title>Remove gridlines in Proc SGPLOT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Remove-gridlines-in-Proc-SGPLOT/m-p/708453#M20836</link>
      <description>&lt;P&gt;I'm creating a plot but can't figure out how to remove the horizontal and vertical gridlines in this plot (marked by the red arrows).&amp;nbsp; Any suggestions?&amp;nbsp; Thanks.&lt;/P&gt;
&lt;P&gt;Here's my code &amp;amp; pic.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*Graphs and info of 2way Models*/
proc sgplot data=predpN_mm_bt;
  title "Predicted vs Actual Graph of 2way Model";
  scatter x=pred_btpN_mm y=pN;
  lineparm x=0 y=0 slope=1 / legendlabel="1:1 line"; /** intercept, slope **/
  yaxis grid values=(0.4 to 1.4 by 0.2) label="Measured pN (%)";
  xaxis grid values=(0.4 to 1.4 by 0.2) label="Predicted pN Ground Reference (%)";
run;&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Daisy2_0-1609178130404.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/53062iB75227289651A1FA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Daisy2_0-1609178130404.png" alt="Daisy2_0-1609178130404.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&amp;nbsp;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Dec 2020 17:56:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Remove-gridlines-in-Proc-SGPLOT/m-p/708453#M20836</guid>
      <dc:creator>Daisy2</dc:creator>
      <dc:date>2020-12-28T17:56:17Z</dc:date>
    </item>
    <item>
      <title>Re: Remove gridlines in Proc SGPLOT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Remove-gridlines-in-Proc-SGPLOT/m-p/708457#M20837</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/310922"&gt;@Daisy2&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To remove all grid lines, just delete the keyword "&lt;FONT face="courier new,courier"&gt;grid&lt;/FONT&gt;" from the XAXIS and YAXIS statement (which requests grid lines).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To remove only &lt;EM&gt;selected&lt;/EM&gt; grid lines, I would probably switch to &lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=grstatproc&amp;amp;docsetTarget=n0ezn6n9coszztn100iyzhfvwnhp.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;&lt;EM&gt;reference&lt;/EM&gt; lines&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Dec 2020 18:43:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Remove-gridlines-in-Proc-SGPLOT/m-p/708457#M20837</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2020-12-28T18:43:26Z</dc:date>
    </item>
    <item>
      <title>Re: Remove gridlines in Proc SGPLOT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Remove-gridlines-in-Proc-SGPLOT/m-p/708460#M20838</link>
      <description>&lt;LI-CODE lang="sas"&gt;/*Graphs and info of 2way Models*/
proc sgplot data=predpN_mm_bt;
  title "Predicted vs Actual Graph of 2way Model";
  scatter x=pred_btpN_mm y=pN;
  lineparm x=0 y=0 slope=1 / legendlabel="1:1 line"; /** intercept, slope **/
  yaxis  values=(0.4 to 1.4 by 0.2) label="Measured pN (%)";
  xaxis values=(0.4 to 1.4 by 0.2) label="Predicted pN Ground Reference (%)";
run;&lt;/LI-CODE&gt;&lt;P&gt;Just remove the grids. That 's all!!!!!!&lt;/P&gt;</description>
      <pubDate>Mon, 28 Dec 2020 19:07:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Remove-gridlines-in-Proc-SGPLOT/m-p/708460#M20838</guid>
      <dc:creator>georgel</dc:creator>
      <dc:date>2020-12-28T19:07:35Z</dc:date>
    </item>
    <item>
      <title>Re: Remove gridlines in Proc SGPLOT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Remove-gridlines-in-Proc-SGPLOT/m-p/708464#M20839</link>
      <description>Thanks a bunch!! It worked.</description>
      <pubDate>Mon, 28 Dec 2020 19:42:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Remove-gridlines-in-Proc-SGPLOT/m-p/708464#M20839</guid>
      <dc:creator>Daisy2</dc:creator>
      <dc:date>2020-12-28T19:42:45Z</dc:date>
    </item>
  </channel>
</rss>

