<?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 outlineattrs sgplot in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/outlineattrs-sgplot/m-p/500327#M17060</link>
    <description>&lt;P&gt;I used outlineattrs to specify the color and thickness of the line. But if I specify for example a value for the thickness between 0 and 1.5&amp;nbsp;&amp;nbsp; There seems to be no changes. The thickness remains the same. Is there anything am doing wrong. Am tring to get very thin otlines.&lt;/P&gt;&lt;P&gt;Is there any way to make the borderlines also very thin?&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data = population2017 noautolengend ;
format Male Female positive.;
hbarparm category= agegroup  response=Male/ barwidth=1 fillattrs=(color=blue baselineattrs=(thickness=0)
&lt;STRONG&gt;outlineattrs=(color=black thickness= 0)&lt;/STRONG&gt; missing;
hbarparm category= agegroup response=Female/  barwidth=1 fillattrs=(color=red) baselineattrs=(thickness=0)
&lt;STRONG&gt;outlineattrs=(color=black thickness=0)&lt;/STRONG&gt; missing;
xaxis values=(-200000 to 200000 by 100000) display=(nolabel) grid  ;
yaxis display=(nolabel) offsetmin=0 offsetmax=0; 
run;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used outlineattrs to specify the color and thickness of the line. But if I specify for example a value for the thickness between 0 and 1.5&amp;nbsp;&amp;nbsp; There seems to be no changes. The thickness remains the same. Is there anything am doing wrong. Am tring to get the bar outlines very thin.&lt;/P&gt;&lt;P&gt;Is there any way to make the borderlines also very thin?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 01 Oct 2018 12:35:04 GMT</pubDate>
    <dc:creator>Anita_n</dc:creator>
    <dc:date>2018-10-01T12:35:04Z</dc:date>
    <item>
      <title>outlineattrs sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/outlineattrs-sgplot/m-p/500327#M17060</link>
      <description>&lt;P&gt;I used outlineattrs to specify the color and thickness of the line. But if I specify for example a value for the thickness between 0 and 1.5&amp;nbsp;&amp;nbsp; There seems to be no changes. The thickness remains the same. Is there anything am doing wrong. Am tring to get very thin otlines.&lt;/P&gt;&lt;P&gt;Is there any way to make the borderlines also very thin?&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data = population2017 noautolengend ;
format Male Female positive.;
hbarparm category= agegroup  response=Male/ barwidth=1 fillattrs=(color=blue baselineattrs=(thickness=0)
&lt;STRONG&gt;outlineattrs=(color=black thickness= 0)&lt;/STRONG&gt; missing;
hbarparm category= agegroup response=Female/  barwidth=1 fillattrs=(color=red) baselineattrs=(thickness=0)
&lt;STRONG&gt;outlineattrs=(color=black thickness=0)&lt;/STRONG&gt; missing;
xaxis values=(-200000 to 200000 by 100000) display=(nolabel) grid  ;
yaxis display=(nolabel) offsetmin=0 offsetmax=0; 
run;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used outlineattrs to specify the color and thickness of the line. But if I specify for example a value for the thickness between 0 and 1.5&amp;nbsp;&amp;nbsp; There seems to be no changes. The thickness remains the same. Is there anything am doing wrong. Am tring to get the bar outlines very thin.&lt;/P&gt;&lt;P&gt;Is there any way to make the borderlines also very thin?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Oct 2018 12:35:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/outlineattrs-sgplot/m-p/500327#M17060</guid>
      <dc:creator>Anita_n</dc:creator>
      <dc:date>2018-10-01T12:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: outlineattrs sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/outlineattrs-sgplot/m-p/500413#M17061</link>
      <description>&lt;P&gt;The default unit of measurement is pixels, which is integer-valued. You can have a 1-pixel boundary or a zero-pixel boundary (which means "no boundary"). There is no such thing as a "half a pixel".&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Because the&amp;nbsp;THICKNESS= option expects an integer, it rounds the value to the nearest integer. However,&amp;nbsp;it also appears to round up any positive value to 1. Thus the following are all equivalent and give a 1-pixel wide boundary&lt;/P&gt;
&lt;P&gt;thickness=0.1px&lt;/P&gt;
&lt;P&gt;thickness=1.1px&lt;/P&gt;
&lt;P&gt;thickness=1.49px&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can get rid of the boundary by using thickness=0,&lt;/P&gt;</description>
      <pubDate>Mon, 01 Oct 2018 14:43:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/outlineattrs-sgplot/m-p/500413#M17061</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2018-10-01T14:43:21Z</dc:date>
    </item>
    <item>
      <title>Re: outlineattrs sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/outlineattrs-sgplot/m-p/500631#M17076</link>
      <description>&lt;P&gt;Okay thanks, that means there is no way to make the boundaries thinner&lt;/P&gt;</description>
      <pubDate>Tue, 02 Oct 2018 06:25:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/outlineattrs-sgplot/m-p/500631#M17076</guid>
      <dc:creator>Anita_n</dc:creator>
      <dc:date>2018-10-02T06:25:52Z</dc:date>
    </item>
  </channel>
</rss>

