<?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: Setting GraphData Styles in Proc Template in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Setting-GraphData-Styles-in-Proc-Template/m-p/110521#M4180</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sanjay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;your solution worked perfectly fine for me, thanks a lot &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T.K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 18 Feb 2013 10:45:23 GMT</pubDate>
    <dc:creator>TKrueger</dc:creator>
    <dc:date>2013-02-18T10:45:23Z</dc:date>
    <item>
      <title>Setting GraphData Styles in Proc Template</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Setting-GraphData-Styles-in-Proc-Template/m-p/110518#M4177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've got a question concerning the Graphdata Option.&lt;/P&gt;&lt;P&gt;I want to create a graphical chart withvectorplots and scatterplots.&lt;/P&gt;&lt;P&gt;The vectorplotlines should have a different thickness for every group (I've got five).&lt;/P&gt;&lt;P&gt;I've created a style which should do this and if I'm changing the Linestyle option everything works fine for me, but it won't accept the linethickness and color attribute changes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has anyone an idea how to solve this problem? Code is attached below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T.K.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODS GRAPHICS ON / IMAGEMAP=YES;&lt;/P&gt;&lt;P&gt;ODS HTML style=styles.vw;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc template;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; define style styles.vw;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; parent=styles.default;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *class GraphDataDefault /&amp;nbsp; linethickness=5px;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; class Graphdata1 / Linestyle=2 linethickness=5px;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; class Graphdata2 / Linestyle=1 linethickness=4px;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; class Graphdata3 / Linestyle=1 linethickness=3px;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; class Graphdata4 / Linestyle=1 linethickness=2px;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; class Graphdata5 / Linestyle=1 linethickness=1px;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; define statgraph diagonal;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; begingraph;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; layout overlay / xaxisopts=(display=none) yaxisopts=(display=none);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vectorplot x=x1 y=y1 xorigin=x yorigin=y / arrowheads=FALSE GROUP=grouping index=grouping ROLENAME=(TIP1=capacity) TIP=(TIP1);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; scatterplot x=x y=y / datalabel=regionid datalabelposition=TOP;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; scatterplot x=x1 y=y1 / datalabel=toregionid datalabelposition=TOP;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; endlayout;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; endgraph;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sgrender data=vw.test template=diagonal;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2013 13:40:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Setting-GraphData-Styles-in-Proc-Template/m-p/110518#M4177</guid>
      <dc:creator>TKrueger</dc:creator>
      <dc:date>2013-02-15T13:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: Setting GraphData Styles in Proc Template</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Setting-GraphData-Styles-in-Proc-Template/m-p/110519#M4178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Line thickness and marker size are ignored for GRAPHDATA1 - N.&amp;nbsp; This is because these style elements are used for groups that are supposed to be visually distinct, but also equal in weight.&amp;nbsp; So, line color and pattern are supported, and marker symbol and color are supported. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The way to get different line thicknesses for each vector is to use 5 separate vector plots, one for each vector, and set their thicknesses individually in the plot statement LINEATTRS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2013 13:54:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Setting-GraphData-Styles-in-Proc-Template/m-p/110519#M4178</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2013-02-15T13:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: Setting GraphData Styles in Proc Template</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Setting-GraphData-Styles-in-Proc-Template/m-p/110520#M4179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sanjay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for the quick reply.&lt;/P&gt;&lt;P&gt;I will try to do this on Monday and will let you know if it was successfull!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and have a nice weekend!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T.K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2013 15:17:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Setting-GraphData-Styles-in-Proc-Template/m-p/110520#M4179</guid>
      <dc:creator>TKrueger</dc:creator>
      <dc:date>2013-02-15T15:17:56Z</dc:date>
    </item>
    <item>
      <title>Re: Setting GraphData Styles in Proc Template</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Setting-GraphData-Styles-in-Proc-Template/m-p/110521#M4180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sanjay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;your solution worked perfectly fine for me, thanks a lot &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T.K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Feb 2013 10:45:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Setting-GraphData-Styles-in-Proc-Template/m-p/110521#M4180</guid>
      <dc:creator>TKrueger</dc:creator>
      <dc:date>2013-02-18T10:45:23Z</dc:date>
    </item>
  </channel>
</rss>

