<?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: %modstyle in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/modstyle/m-p/112486#M4248</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;%modstyle is an autocall macro that has been around since SAS 9.22: &lt;A href="http://support.sas.com/documentation/cdl/en/statug/63347/HTML/default/viewer.htm#statug_odsgraph_sect056.htm" title="http://support.sas.com/documentation/cdl/en/statug/63347/HTML/default/viewer.htm#statug_odsgraph_sect056.htm"&gt;SAS/STAT(R) 9.22 User's Guide&lt;/A&gt;&lt;/P&gt;&lt;P&gt;See also &lt;A href="http://blogs.sas.com/content/graphicallyspeaking/2012/06/14/quick-and-easy-with-modstyle/" title="http://blogs.sas.com/content/graphicallyspeaking/2012/06/14/quick-and-easy-with-modstyle/"&gt; Quick and easy with MODSTYLE - Graphically Speaking&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Apr 2013 12:16:35 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2013-04-19T12:16:35Z</dc:date>
    <item>
      <title>%modstyle</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/modstyle/m-p/112483#M4245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I need your suggestion, why the following code for markers does not work in the rtf output? Is there anything missing?&amp;nbsp;&amp;nbsp;&amp;nbsp; SAS 9.2&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods graphics on/noborder; &lt;/P&gt;&lt;P&gt;ods rtf style=markstyle&amp;nbsp; file='C:\xx...\..x\plot.rtf';&lt;/P&gt;&lt;P&gt;%modstyle(name=markers, parent=listing, type=CLM,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; markers=circle triangle square diamond);&amp;nbsp; &lt;BR /&gt;ods listing style=markers;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sgplot data=data2;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Apr 2013 16:43:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/modstyle/m-p/112483#M4245</guid>
      <dc:creator>muyi</dc:creator>
      <dc:date>2013-04-18T16:43:43Z</dc:date>
    </item>
    <item>
      <title>Re: %modstyle</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/modstyle/m-p/112484#M4246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Other than incomplete proc sgplot code and no ODS RTF Close?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you getting any warnings or errors in the log when submitting the code?&lt;/P&gt;&lt;P&gt;Since MODSTYLE does not appear to be a SAS supplied macro, at least in my install of SAS 9.2.3, you should probably supply the source for that as well since that could be part of the problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Apr 2013 17:48:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/modstyle/m-p/112484#M4246</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2013-04-18T17:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: %modstyle</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/modstyle/m-p/112485#M4247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You've also set the LISTING style for markers not RTF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods rtf style=markers;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Apr 2013 18:08:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/modstyle/m-p/112485#M4247</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2013-04-18T18:08:00Z</dc:date>
    </item>
    <item>
      <title>Re: %modstyle</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/modstyle/m-p/112486#M4248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;%modstyle is an autocall macro that has been around since SAS 9.22: &lt;A href="http://support.sas.com/documentation/cdl/en/statug/63347/HTML/default/viewer.htm#statug_odsgraph_sect056.htm" title="http://support.sas.com/documentation/cdl/en/statug/63347/HTML/default/viewer.htm#statug_odsgraph_sect056.htm"&gt;SAS/STAT(R) 9.22 User's Guide&lt;/A&gt;&lt;/P&gt;&lt;P&gt;See also &lt;A href="http://blogs.sas.com/content/graphicallyspeaking/2012/06/14/quick-and-easy-with-modstyle/" title="http://blogs.sas.com/content/graphicallyspeaking/2012/06/14/quick-and-easy-with-modstyle/"&gt; Quick and easy with MODSTYLE - Graphically Speaking&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Apr 2013 12:16:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/modstyle/m-p/112486#M4248</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2013-04-19T12:16:35Z</dc:date>
    </item>
  </channel>
</rss>

