<?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: ods html - no graphical output in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/ods-html-no-graphical-output/m-p/413804#M14221</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15130"&gt;@DanH_sas&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Reeza is correct. To set the format of the ODS Graphics output, one should use the OUTPUTFMT (aka, IMAGEFMT) option on the ODS GRAPHICS statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;BR /&gt;Dan&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I never do that, and I get PNG files.&lt;/P&gt;</description>
    <pubDate>Wed, 15 Nov 2017 21:14:30 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2017-11-15T21:14:30Z</dc:date>
    <item>
      <title>ods html - no graphical output</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ods-html-no-graphical-output/m-p/413782#M14215</link>
      <description>&lt;P&gt;I have generated &lt;SPAN&gt;html&lt;/SPAN&gt; files using following code. In the generated html body and frame files, there are no graphic outputs generated. When open these two files, there is message displayed at bottom “Internet explorer restricts this webpage form running scripts or ActiveX”. Does anyone have idea? I am using Base SAS in version SAS 9.4 TS Level 1M4 running on W32_7PRO platform with OS windows version 6.&lt;/P&gt;&lt;PRE&gt;title;
title 'Comparing Group Means';

data Scores;
   input Gender $ Score @@;
   datalines;
f 75  f 76  f 80  f 77  f 80  f 77  f 73
m 82  m 80  m 85  m 85  m 78  m 87  m 82
;

proc ttest;
   class Gender;
   var Score;
run;

ods html close;
ods html body="&amp;amp;output\test.htm" contents="&amp;amp;output\testc.htm" frame="&amp;amp;output\testf.htm" style=HTMLBlue ;
ods graphics on;
ods graphics / reset
      imagemap=on
      width=4in
      height=6in ;

proc ttest data=scores;
   class Gender;
   var Score;
run;

ods html close;
ods listing;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;SAS 9.4 TS Level 1M4 running on W32_7PRO platform with OS windows version 6.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Nov 2017 19:36:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ods-html-no-graphical-output/m-p/413782#M14215</guid>
      <dc:creator>nnl3256</dc:creator>
      <dc:date>2017-11-15T19:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: ods html - no graphical output</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ods-html-no-graphical-output/m-p/413783#M14216</link>
      <description>&lt;P&gt;You want to set your default graphics to GIF or PNG.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;goptions device=png;&lt;/PRE&gt;</description>
      <pubDate>Wed, 15 Nov 2017 19:40:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ods-html-no-graphical-output/m-p/413783#M14216</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2017-11-15T19:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: ods html - no graphical output</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ods-html-no-graphical-output/m-p/413784#M14217</link>
      <description>&lt;P&gt;For ODS isn't that set in the ODS Graphics statement? imagefmt?&lt;/P&gt;</description>
      <pubDate>Wed, 15 Nov 2017 19:50:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ods-html-no-graphical-output/m-p/413784#M14217</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-11-15T19:50:40Z</dc:date>
    </item>
    <item>
      <title>Re: ods html - no graphical output</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ods-html-no-graphical-output/m-p/413787#M14218</link>
      <description>&lt;P&gt;I have never used the imagefmt option with ODS GRAPHICS. I do use the command I stated above.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Nov 2017 20:10:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ods-html-no-graphical-output/m-p/413787#M14218</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2017-11-15T20:10:25Z</dc:date>
    </item>
    <item>
      <title>Re: ods html - no graphical output</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ods-html-no-graphical-output/m-p/413796#M14219</link>
      <description>&lt;P&gt;The problem is how you put the paths in your ODS HTML options. Try this instead:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods html path="&amp;amp;output" (url=none) body="test.htm" contents="testc.htm" frame="testf.htm" style=HTMLBlue ;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Both your graph output and the HTML files will be written to the PATH location. The (url=none) prevents the path from being written into the HTML output, making it easier to deploy your output.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Hope this helps!&lt;/P&gt;
&lt;P&gt;Dan&lt;/P&gt;</description>
      <pubDate>Wed, 15 Nov 2017 21:07:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ods-html-no-graphical-output/m-p/413796#M14219</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2017-11-15T21:07:38Z</dc:date>
    </item>
    <item>
      <title>Re: ods html - no graphical output</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ods-html-no-graphical-output/m-p/413800#M14220</link>
      <description>&lt;P&gt;Reeza is correct. To set the format of the ODS Graphics output, one should use the OUTPUTFMT (aka, IMAGEFMT) option on the ODS GRAPHICS statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;BR /&gt;Dan&lt;/P&gt;</description>
      <pubDate>Wed, 15 Nov 2017 21:10:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ods-html-no-graphical-output/m-p/413800#M14220</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2017-11-15T21:10:47Z</dc:date>
    </item>
    <item>
      <title>Re: ods html - no graphical output</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ods-html-no-graphical-output/m-p/413804#M14221</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15130"&gt;@DanH_sas&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Reeza is correct. To set the format of the ODS Graphics output, one should use the OUTPUTFMT (aka, IMAGEFMT) option on the ODS GRAPHICS statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;BR /&gt;Dan&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I never do that, and I get PNG files.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Nov 2017 21:14:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ods-html-no-graphical-output/m-p/413804#M14221</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2017-11-15T21:14:30Z</dc:date>
    </item>
    <item>
      <title>Re: ods html - no graphical output</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ods-html-no-graphical-output/m-p/413809#M14222</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I never do that, and I get PNG files.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Probably because it's the default setting for HTML, though it looks like the option name is OUTPUTFMT= not IMAGEFMT.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;HTML5 default is SVG for example.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Nov 2017 21:27:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ods-html-no-graphical-output/m-p/413809#M14222</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-11-15T21:27:08Z</dc:date>
    </item>
    <item>
      <title>Re: ods html - no graphical output</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ods-html-no-graphical-output/m-p/413810#M14223</link>
      <description>&lt;P&gt;Either OUTPUTFMT or IMAGEFMT will work. OUTPUTFMT is now the official option name.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Nov 2017 21:28:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ods-html-no-graphical-output/m-p/413810#M14223</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2017-11-15T21:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: ods html - no graphical output</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ods-html-no-graphical-output/m-p/414372#M14230</link>
      <description>&lt;P&gt;The problem&amp;nbsp;IS how to set path=&amp;nbsp;in&amp;nbsp;ODS HTML options. Yes, it works by using code as you suggested. Thank you all!&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2017 13:57:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ods-html-no-graphical-output/m-p/414372#M14230</guid>
      <dc:creator>nnl3256</dc:creator>
      <dc:date>2017-11-17T13:57:44Z</dc:date>
    </item>
    <item>
      <title>Re: ods html - no graphical output</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ods-html-no-graphical-output/m-p/415161#M14258</link>
      <description>&lt;P&gt;This option doesn't help on my PC and&amp;nbsp;path option works.&amp;nbsp; Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Nov 2017 13:07:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ods-html-no-graphical-output/m-p/415161#M14258</guid>
      <dc:creator>nnl3256</dc:creator>
      <dc:date>2017-11-21T13:07:38Z</dc:date>
    </item>
    <item>
      <title>Re: ods html - no graphical output</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ods-html-no-graphical-output/m-p/415162#M14259</link>
      <description>&lt;P&gt;None of them works on my PC. path option works.&amp;nbsp; Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Nov 2017 13:09:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ods-html-no-graphical-output/m-p/415162#M14259</guid>
      <dc:creator>nnl3256</dc:creator>
      <dc:date>2017-11-21T13:09:16Z</dc:date>
    </item>
  </channel>
</rss>

