<?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: How to Remove Borders Around SGPLOT HISTOGRAM? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-Remove-Borders-Around-SGPLOT-HISTOGRAM/m-p/595913#M171514</link>
    <description>&lt;P&gt;Which border do you want to remove? The one that goes all around the plot or the box with the axis?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The NOBORDER option on the Sgplot statement removes the right and top lines that connect to the axis.&lt;/P&gt;</description>
    <pubDate>Fri, 11 Oct 2019 22:46:36 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2019-10-11T22:46:36Z</dc:date>
    <item>
      <title>How to Remove Borders Around SGPLOT HISTOGRAM?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Remove-Borders-Around-SGPLOT-HISTOGRAM/m-p/595910#M171513</link>
      <description>&lt;P&gt;How can I eliminate the borders in SGPLOT HISTOGRAMs?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics/reset;
ods listing gpath="!userprofile\desktop\";
data _;
do i=-1,0,1;
do j=1 to 5000;
x=i+rannor(1);
output;
end;
end;
run;
proc sgplot;
styleattrs datacolors=(red blue lime);
histogram x/group=i transparency=0.5;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Here's the outcome.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SGPlot.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/33088i325EF90F6B9F0B1A/image-size/large?v=v2&amp;amp;px=999" role="button" title="SGPlot.png" alt="SGPlot.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;</description>
      <pubDate>Sat, 12 Oct 2019 19:21:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Remove-Borders-Around-SGPLOT-HISTOGRAM/m-p/595910#M171513</guid>
      <dc:creator>Junyong</dc:creator>
      <dc:date>2019-10-12T19:21:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to Remove Borders Around SGPLOT HISTOGRAM?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Remove-Borders-Around-SGPLOT-HISTOGRAM/m-p/595913#M171514</link>
      <description>&lt;P&gt;Which border do you want to remove? The one that goes all around the plot or the box with the axis?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The NOBORDER option on the Sgplot statement removes the right and top lines that connect to the axis.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Oct 2019 22:46:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Remove-Borders-Around-SGPLOT-HISTOGRAM/m-p/595913#M171514</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-10-11T22:46:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to Remove Borders Around SGPLOT HISTOGRAM?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Remove-Borders-Around-SGPLOT-HISTOGRAM/m-p/595982#M171539</link>
      <description>&lt;P&gt;Sorry for this late response, but I wanted to ask something similar to CBARLINE in PROC UNIVARIATE HISTOGRAM.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _;
do i=1 to 5000;
x=rannor(1);
output;
end;
run;
proc univariate;
var x;
histogram/cfill=blue cbarline=red;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Here's the outcome.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="_.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/33104iDD246D7841BD22BA/image-size/large?v=v2&amp;amp;px=999" role="button" title="_.png" alt="_.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Hope this clarifies. Thanks for your help.&lt;/P&gt;</description>
      <pubDate>Sat, 12 Oct 2019 19:27:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Remove-Borders-Around-SGPLOT-HISTOGRAM/m-p/595982#M171539</guid>
      <dc:creator>Junyong</dc:creator>
      <dc:date>2019-10-12T19:27:30Z</dc:date>
    </item>
  </channel>
</rss>

