<?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: Proc sgplot dattrmap in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/564054#M18259</link>
    <description>&lt;P&gt;VERSION 9.4, it seems maintenace 3 or 4:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For Base SAS Software ...&lt;BR /&gt;Custom version information: 9.4_M3&lt;BR /&gt;Image version information: 9.04.01M3P062415&lt;BR /&gt;For SAS/STAT ...&lt;BR /&gt;Custom version information: 14.1&lt;BR /&gt;For SAS/GRAPH ...&lt;BR /&gt;Custom version information: 9.4_M3&lt;BR /&gt;For SAS Integration Technologies ...&lt;BR /&gt;Custom version information: 9.4_M3&lt;BR /&gt;For High Performance Suite ...&lt;BR /&gt;Custom version information: 2.2_M4&lt;BR /&gt;For SAS/ACCESS Interface to PC Files ...&lt;BR /&gt;Custom version information: 9.4_M3&lt;BR /&gt;For SAS/ACCESS Interface to ODBC ...&lt;BR /&gt;Custom version information: 9.4_M3&lt;/P&gt;</description>
    <pubDate>Thu, 06 Jun 2019 12:31:55 GMT</pubDate>
    <dc:creator>PSIOT</dc:creator>
    <dc:date>2019-06-06T12:31:55Z</dc:date>
    <item>
      <title>Proc sgplot dattrmap</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/563684#M18229</link>
      <description>&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;i would like to add fill pattern in some vbar (BTT group) using dattrmap with proc sgplot.&lt;/P&gt;&lt;P&gt;Can you help me please for adding fill pattern in the code?&lt;/P&gt;&lt;P&gt;please find my code (graph in file enclosed):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data attrmap;&lt;BR /&gt;input id $ value $15. &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/8008"&gt;@22&lt;/a&gt; fillcolor $10. @32 ;&lt;BR /&gt;datalines;&lt;BR /&gt;status Deceased (BTT) ygr&lt;BR /&gt;status Deceased (DT) ygr&lt;BR /&gt;status Transplanted bigb&lt;BR /&gt;status Ongoing (BTT) bio&lt;BR /&gt;status Ongoing (DT) bio&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;/*ods select none;*/&lt;BR /&gt;ods graphics on;&lt;/P&gt;&lt;P&gt;ODS GRAPHICS / RESET IMAGENAME = 'HistoDuration' IMAGEFMT =png&lt;BR /&gt;HEIGHT = 5.2 in WIDTH = 6.2 in;&lt;BR /&gt;ODS LISTING GPATH = '\\vcarapp010\Rapports\01 - Pivotal study\01-Report\07-Communication\01-Intern Communication\01-Site Activity Report\Graphs' ;&lt;BR /&gt;ODS tagsets.sasreport13(ID=EGSR) gtitle;&lt;BR /&gt;proc sgplot data=statuspatient dattrmap=attrmap;&lt;BR /&gt;yaxis label='Support duration (days)' VALUES= (0 to 500 by 30);&lt;BR /&gt;vbar patient/ barwidth=0.3 response=nbSupportDay group=status attrid=status nooutline discreteoffset=0.1 datalabel ;&lt;BR /&gt;refline 180 / axis=y lineattrs=( color=darkgreen pattern=dash );&lt;BR /&gt;inset 'cumulative support duration= &amp;amp;supportDuration (year)' / position = topright;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;DIV align="center"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV align="center"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 12:18:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/563684#M18229</guid>
      <dc:creator>PSIOT</dc:creator>
      <dc:date>2019-06-05T12:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sgplot dattrmap</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/563688#M18230</link>
      <description>&lt;P&gt;I think the closest you will get it to use the&amp;nbsp;&lt;STRONG&gt;FILLSTYLE&amp;nbsp;&lt;/STRONG&gt;variable in the discrete attribute map data set. You can read more about it in the &lt;A href="https://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=n18szqcwir8q2nn10od9hhdh2ksj.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_self"&gt;documentation&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, I would simply use the&amp;nbsp;&lt;STRONG&gt;FILLPATTERNATTRS&amp;nbsp;&lt;/STRONG&gt;option directly in the &lt;A href="https://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=n0p7vdd69sgf3wn1479qxqxuryrt.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en#" target="_self"&gt;VBAR Statement&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 13:01:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/563688#M18230</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-06-05T13:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sgplot dattrmap</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/563713#M18233</link>
      <description>&lt;P&gt;Thanks for your answers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;I don't know how to use FILLSTYLE? what are the options?&lt;/P&gt;&lt;P&gt;Using FILLPATTERNATTRS is difficult&amp;nbsp;because I would like to put pattern in not all vbars.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 14:15:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/563713#M18233</guid>
      <dc:creator>PSIOT</dc:creator>
      <dc:date>2019-06-05T14:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sgplot dattrmap</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/563743#M18237</link>
      <description>&lt;P&gt;1. Add a fillstyle column to the attribute map&lt;/P&gt;
&lt;P&gt;2. Specify the pattern according to the methods outlined here:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=graphref&amp;amp;docsetTarget=p02daopdgx5yh4n1vmffk4ud4697.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en#"&gt;https://documentation.sas.com/?docsetId=graphref&amp;amp;docsetTarget=p02daopdgx5yh4n1vmffk4ud4697.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en#&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data attrmap;
input id $ value $15. @22 fillcolor $10. @32 &lt;FONT color="#FF6600"&gt;&lt;STRONG&gt;fillstyle&lt;/STRONG&gt;&lt;/FONT&gt; ;
datalines;
status Deceased (BTT) ygr R1
status Deceased (DT) ygr  X2
status Transplanted bigb  L2
status Ongoing (BTT) bio X3
status Ongoing (DT) bio  
;
run;&lt;/PRE&gt;
&lt;P&gt;Unfortunately I can't test any of this because you didn't provide sample data and I'm too lazy to make some up at the moment. If that doesn't work, post your log. You may need to modify the code above because I think the spacing was lost since you didn't use a code block when inserting your code - it won't be read in properly then.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/96268"&gt;@PSIOT&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thanks for your answers.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;I don't know how to use FILLSTYLE? what are the options?&lt;/P&gt;
&lt;P&gt;Using FILLPATTERNATTRS is difficult&amp;nbsp;because I would like to put pattern in not all vbars.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 16:05:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/563743#M18237</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-06-05T16:05:16Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sgplot dattrmap</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/563790#M18239</link>
      <description>&lt;P&gt;Here's a little something to get you started (I'm not sure it's got everything you'll need), and some simple data for others to use if they want to add some enhancements or alternate ideas...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data attrmap;&lt;BR /&gt;infile datalines dlm=',';&lt;BR /&gt;length id $10 value $15 fillcolor $10 fillpattern $10;&lt;BR /&gt;input id value fillcolor fillpattern;&lt;BR /&gt;datalines;&lt;BR /&gt;status,Deceased (BTT),ygr,R1&lt;BR /&gt;status,Deceased (DT),ygr,X2&lt;BR /&gt;status,Transplanted,bigb,L2&lt;BR /&gt;status,Ongoing (BTT),bio,X3&lt;BR /&gt;status,Ongoing (DT),bio,X3&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data statuspatient;&lt;BR /&gt;length status $15;&lt;BR /&gt;infile datalines dlm=',';&lt;BR /&gt;input patient nbSupportDay status;&lt;BR /&gt;datalines;&lt;BR /&gt;1,150,Transplanted&lt;BR /&gt;2,400,Ongoing (DT)&lt;BR /&gt;3,450,Ongoing (BTT)&lt;BR /&gt;4,100,Deceased (DT)&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods graphics / attrpriority=none;&lt;BR /&gt;proc sgplot data=statuspatient dattrmap=attrmap;&lt;BR /&gt;yaxis label='Support duration (days)' VALUES= (0 to 500 by 30);&lt;BR /&gt;vbar patient/ barwidth=0.3 response=nbSupportDay group=status&lt;BR /&gt;attrid=status nooutline datalabel fillpattern;&lt;BR /&gt;refline 180 / axis=y lineattrs=( color=darkgreen pattern=dash );&lt;BR /&gt;yaxis label='Support duration (days)' VALUES= (0 to 500 by 100);&lt;BR /&gt;inset 'cumulative support duration=xxx (year)' / position = topright;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bar_pattern.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/30011i15CA1A74D6C3ADFA/image-size/large?v=v2&amp;amp;px=999" role="button" title="bar_pattern.png" alt="bar_pattern.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 17:34:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/563790#M18239</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2019-06-05T17:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sgplot dattrmap</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/563793#M18240</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13585"&gt;@GraphGuy&lt;/a&gt;&amp;nbsp; Is there a reason FILLPATTERN isn't listed as an option for the discrete attribute maps dataset in the documentation? Is there a different reference that should be used?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=n18szqcwir8q2nn10od9hhdh2ksj.htm&amp;amp;docsetVersion=1.0&amp;amp;locale=en"&gt;https://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=n18szqcwir8q2nn10od9hhdh2ksj.htm&amp;amp;docsetVersion=1.0&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=n18szqcwir8q2nn10od9hhdh2ksj.htm&amp;amp;docsetVersion=3.1&amp;amp;locale=en"&gt;https://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=n18szqcwir8q2nn10od9hhdh2ksj.htm&amp;amp;docsetVersion=3.1&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 17:40:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/563793#M18240</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-06-05T17:40:17Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sgplot dattrmap</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/563801#M18241</link>
      <description>&lt;P&gt;This is a new area for me, so I'm not sure (I just Google'd around, and trial-and-error'd, until I found what I needed).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One of my fellow testers was having an in-depth look at the attrmap stuff this week, and I suspect he will find any remaining bugs/oddities, and also get the documentation enhanced, before the next release! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 18:03:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/563801#M18241</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2019-06-05T18:03:07Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sgplot dattrmap</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/563816#M18246</link>
      <description>&lt;P&gt;See the doc section&lt;A href="https://go.documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=n18szqcwir8q2nn10od9hhdh2ksj.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_self"&gt; "Discrete Attribute Map Data Sets"&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2019 11:53:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/563816#M18246</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2019-06-06T11:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sgplot dattrmap</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/563945#M18248</link>
      <description>&lt;P&gt;FILLPATTERNS are not currently supported in discrete attrmaps, either through the attrmap data set or in the GTL language.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2019 02:58:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/563945#M18248</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2019-06-06T02:58:28Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sgplot dattrmap</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/563990#M18252</link>
      <description>&lt;P&gt;Thanks Reeza for your answer,&lt;/P&gt;&lt;P&gt;I tried your code and unfortunately it doesn't work but unlike&amp;nbsp; previous versions there are some information in log file.&lt;/P&gt;&lt;P&gt;NOTE: The style element 'R1' in the option FILLATTRS is invalid. The default will be used.&lt;BR /&gt;NOTE: The style element 'X2' in the option FILLATTRS is invalid. The default will be used.&lt;BR /&gt;NOTE: The style element 'L2' in the option FILLATTRS is invalid. The default will be used.&lt;BR /&gt;NOTE: The style element 'X3' in the option FILLATTRS is invalid. The default will be used.&lt;BR /&gt;NOTE: The style element 'R1' in the option FILLATTRS is invalid. The default will be used.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2019 08:17:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/563990#M18252</guid>
      <dc:creator>PSIOT</dc:creator>
      <dc:date>2019-06-06T08:17:45Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sgplot dattrmap</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/563993#M18253</link>
      <description>&lt;P&gt;Thanks Reeza for your answer,&lt;/P&gt;&lt;P&gt;I tried your code and unfortunately it doesn't work but unlike&amp;nbsp; previous versions there are some information in log file.&lt;/P&gt;&lt;P&gt;NOTE: The style element 'R1' in the option FILLATTRS is invalid. The default will be used.&lt;BR /&gt;NOTE: The style element 'X2' in the option FILLATTRS is invalid. The default will be used.&lt;BR /&gt;NOTE: The style element 'L2' in the option FILLATTRS is invalid. The default will be used.&lt;BR /&gt;....&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;PSIOT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2019 08:40:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/563993#M18253</guid>
      <dc:creator>PSIOT</dc:creator>
      <dc:date>2019-06-06T08:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sgplot dattrmap</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/563994#M18254</link>
      <description>&lt;P&gt;Hello RobertAllison_SAS,&lt;/P&gt;&lt;P&gt;I tried your code but as others SAS users said, Fillpatterns are not currently supported in discrete attrmaps.&lt;/P&gt;&lt;P&gt;Please find an extract of log when I execute your code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods graphics / attrpriority=none;&lt;BR /&gt;56 proc sgplot data=statuspatient dattrmap=attrmap;&lt;BR /&gt;57 yaxis label='Support duration (days)' VALUES= (0 to 500 by 30);&lt;BR /&gt;58 vbar patient/ barwidth=0.3 response=nbSupportDay group=status&lt;BR /&gt;59 attrid=status nooutline datalabel fillpattern;&lt;BR /&gt;___________&lt;BR /&gt;1&lt;BR /&gt;WARNING 1-322: Assuming the symbol FILL was misspelled as fillpattern.&lt;BR /&gt;60 refline 180 / axis=y lineattrs=( color=darkgreen pattern=dash );&lt;BR /&gt;61 yaxis label='Support duration (days)' VALUES= (0 to 500 by 100);&lt;BR /&gt;62 inset 'cumulative support duration=xxx (year)' / position = topright;&lt;BR /&gt;63 run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;PSIOT&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2019 08:50:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/563994#M18254</guid>
      <dc:creator>PSIOT</dc:creator>
      <dc:date>2019-06-06T08:50:54Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sgplot dattrmap</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/564037#M18255</link>
      <description>&lt;P&gt;Hmm ... my code runs cleanly for me at 9.4 maintenance 6 (ie, the latest release), and produces the output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I guess we're back to the age-old question ... "which release of SAS are you using?"&lt;/P&gt;
&lt;P&gt;(ODS Graphics is fairly new, and features are being added with each release, therefore the release you're using is very important.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sas_log.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/30038i771A2731909C56F4/image-size/large?v=v2&amp;amp;px=999" role="button" title="sas_log.png" alt="sas_log.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2019 11:26:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/564037#M18255</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2019-06-06T11:26:54Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sgplot dattrmap</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/564054#M18259</link>
      <description>&lt;P&gt;VERSION 9.4, it seems maintenace 3 or 4:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For Base SAS Software ...&lt;BR /&gt;Custom version information: 9.4_M3&lt;BR /&gt;Image version information: 9.04.01M3P062415&lt;BR /&gt;For SAS/STAT ...&lt;BR /&gt;Custom version information: 14.1&lt;BR /&gt;For SAS/GRAPH ...&lt;BR /&gt;Custom version information: 9.4_M3&lt;BR /&gt;For SAS Integration Technologies ...&lt;BR /&gt;Custom version information: 9.4_M3&lt;BR /&gt;For High Performance Suite ...&lt;BR /&gt;Custom version information: 2.2_M4&lt;BR /&gt;For SAS/ACCESS Interface to PC Files ...&lt;BR /&gt;Custom version information: 9.4_M3&lt;BR /&gt;For SAS/ACCESS Interface to ODBC ...&lt;BR /&gt;Custom version information: 9.4_M3&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2019 12:31:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/564054#M18259</guid>
      <dc:creator>PSIOT</dc:creator>
      <dc:date>2019-06-06T12:31:55Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sgplot dattrmap</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/564110#M18260</link>
      <description>&lt;P&gt;Just to add another clarifying point, the FILLSTYLE column is synonymous with the FILLSTYLEELEMENT column. We deprecated the FILLSTYLE column name to make it clearer that this column should contain the names of ODS style elements from which you want to pull FILL attributes. The FILLSTYLE column name is still valid -- just deprecated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2019 14:15:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/564110#M18260</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2019-06-06T14:15:24Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sgplot dattrmap</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/564134#M18261</link>
      <description>&lt;P&gt;After some checking from the developers, it appears the hatch patterns in my bar chart aren't from the attrmap, but rather from the ODS style. My bad! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2019 14:49:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-sgplot-dattrmap/m-p/564134#M18261</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2019-06-06T14:49:12Z</dc:date>
    </item>
  </channel>
</rss>

