<?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: PLOT options autohref autovref don't work, if eps graph is created with &amp;quot;ODS PRINTER printer=&amp;quot;PostScript EPS Color&amp;quot; in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/PLOT-options-autohref-autovref-don-t-work-if-eps-graph-is/m-p/40241#M1279</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure - in areas like this, I just find something that works and go with it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Nov 2011 17:08:37 GMT</pubDate>
    <dc:creator>GraphGuy</dc:creator>
    <dc:date>2011-11-03T17:08:37Z</dc:date>
    <item>
      <title>PLOT options autohref autovref don't work, if eps graph is created with "ODS PRINTER printer="PostScript EPS Color"</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/PLOT-options-autohref-autovref-don-t-work-if-eps-graph-is/m-p/40238#M1276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use the GPLOT procedure with the following options:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="sascode"&gt;PROC GPLOT DATA = d_plot ANNOTATE = anno ;&lt;BR /&gt;&amp;nbsp; PLOT y * x = Line / haxis=axis1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; vaxis=axis2&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; nolegend&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; autovref&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cautovref= cx505050&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; lautovref= 33&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; autohref&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cautohref= cx505050&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; lautohref= 33&lt;BR /&gt;&amp;nbsp; ;&lt;BR /&gt;RUN; QUIT; &lt;/P&gt;&lt;P class="sascode"&gt;&lt;/P&gt;&lt;P&gt;With my macro, I create graphs of type .emf or .eps, depending on a macro variable with name TYPE. My goptions are:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="sascode"&gt;%IF ( &amp;amp;TYPE. = emf ) %THEN %DO ;&lt;BR /&gt;&amp;nbsp; goptions ftext = 'arial' device = sasemf gaccess = gsasfile gsfmode = replace&lt;BR /&gt;&amp;nbsp; vsize = 12 cm hsize = 12 cm&lt;BR /&gt;&amp;nbsp; ;&lt;BR /&gt;&amp;nbsp; filename gsasfile "pathname\name.emf";&lt;BR /&gt;%END;&lt;BR /&gt;%IF ( &amp;amp;TYPE. = eps ) %THEN %DO ;&lt;BR /&gt;&amp;nbsp; ODS LISTING CLOSE ;&lt;BR /&gt;&amp;nbsp; OPTIONS PAPERSIZE = ("12cm","12cm") NODATE NONUMBER ;&lt;BR /&gt;&amp;nbsp; ODS PRINTER printer = "PostScript EPS Color" FILE = pathname\name.emf";&lt;BR /&gt;&amp;nbsp; goptions ftext = 'Helvetica' gsfmode = replace&lt;BR /&gt;&amp;nbsp; hsize = 12 cm vsize = 12 cm&lt;BR /&gt;&amp;nbsp; ;&lt;BR /&gt;%END; &lt;/P&gt;&lt;P class="sascode"&gt;&lt;/P&gt;&lt;P&gt;The grid creation by the plot options autovref and autohref works fine for the emf-files, but the grid is not visible in the eps-files. Is there any reason why the options are ignored if the eps-files are produced?&lt;/P&gt;&lt;P&gt;Thanks in advance and best regards,&lt;BR /&gt;saibot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Nov 2011 15:54:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/PLOT-options-autohref-autovref-don-t-work-if-eps-graph-is/m-p/40238#M1276</guid>
      <dc:creator>saibot</dc:creator>
      <dc:date>2011-11-02T15:54:18Z</dc:date>
    </item>
    <item>
      <title>PLOT options autohref autovref don't work, if eps graph is created with "ODS PRINTER printer="PostScript EPS Color"</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/PLOT-options-autohref-autovref-don-t-work-if-eps-graph-is/m-p/40239#M1277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not too savvy with emf, but I ran the following which creates a graph using your options to create the reference lines, and then I viewed the output (in Adobe Photoshop Elements 9), and the reference lines were visible.&amp;nbsp; Note that depending on your zoom level, and the size of the graph, it is possible for light gray dashed lines to "drop out" (ie, become "invisible").&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%let name=plt011;&lt;BR /&gt;filename odsout '.';&lt;/P&gt;&lt;P&gt;Goptions Reset&amp;nbsp;&amp;nbsp; = Goptions&lt;BR /&gt;&amp;nbsp; Device&amp;nbsp; = sasprtc&lt;BR /&gt;&amp;nbsp; Ftext&amp;nbsp;&amp;nbsp; = 'Arial'&lt;BR /&gt;&amp;nbsp; Hsize&amp;nbsp;&amp;nbsp; = 7 IN&lt;BR /&gt;&amp;nbsp; Vsize&amp;nbsp;&amp;nbsp; = 5 IN;&lt;BR /&gt;ods printer SAS printer="PostScript EPS Color" file="&amp;amp;name..eps";&lt;/P&gt;&lt;P&gt;proc gplot data=sashelp.class;&lt;BR /&gt;plot height*weight /&lt;BR /&gt; autovref&lt;BR /&gt; cautovref=cx505050&lt;BR /&gt; lautovref=33&lt;BR /&gt; autohref&lt;BR /&gt; cautohref=cx505050&lt;BR /&gt; lautohref=33&lt;BR /&gt; ;&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Nov 2011 19:36:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/PLOT-options-autohref-autovref-don-t-work-if-eps-graph-is/m-p/40239#M1277</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2011-11-02T19:36:45Z</dc:date>
    </item>
    <item>
      <title>Re: PLOT options autohref autovref don't work, if eps graph is created with "ODS PRINTER printer="PostScript EPS Color"</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/PLOT-options-autohref-autovref-don-t-work-if-eps-graph-is/m-p/40240#M1278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much for your answer. It was right, I changed the color to black and now, the lines are visible. I didn't expect such an optical difference between emf- and eps-graphs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One further question about your options. You chose&lt;/P&gt;&lt;P&gt;&amp;nbsp; Device&amp;nbsp; = sasprtc&lt;/P&gt;&lt;P&gt;I ran my program with this option and without, both worked and gave the same result. If I use the &lt;/P&gt;&lt;P&gt;ODS PRINTER printer="PostScript EPS Color"&lt;/P&gt;&lt;P&gt;statement, is it advantageous/necessary to use additionally the "Device&amp;nbsp; = sasprtc" option?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you and best regards,&lt;/P&gt;&lt;P&gt;saibot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Nov 2011 16:55:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/PLOT-options-autohref-autovref-don-t-work-if-eps-graph-is/m-p/40240#M1278</guid>
      <dc:creator>saibot</dc:creator>
      <dc:date>2011-11-03T16:55:52Z</dc:date>
    </item>
    <item>
      <title>Re: PLOT options autohref autovref don't work, if eps graph is created with "ODS PRINTER printer="PostScript EPS Color"</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/PLOT-options-autohref-autovref-don-t-work-if-eps-graph-is/m-p/40241#M1279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure - in areas like this, I just find something that works and go with it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Nov 2011 17:08:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/PLOT-options-autohref-autovref-don-t-work-if-eps-graph-is/m-p/40241#M1279</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2011-11-03T17:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: PLOT options autohref autovref don't work, if eps graph is created with "ODS PRINTER printer="PostScript EPS Color"</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/PLOT-options-autohref-autovref-don-t-work-if-eps-graph-is/m-p/40242#M1280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; &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; That is also my approach to all the device/printer options...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Nov 2011 09:01:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/PLOT-options-autohref-autovref-don-t-work-if-eps-graph-is/m-p/40242#M1280</guid>
      <dc:creator>saibot</dc:creator>
      <dc:date>2011-11-04T09:01:04Z</dc:date>
    </item>
  </channel>
</rss>

