<?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: HTMLPANEL bordercolor in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/HTMLPANEL-bordercolor/m-p/228686#M8291</link>
    <description>&lt;P&gt;Hmm ... my solution works with gplot, but I'm not sure if it works with sgplot.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 06 Oct 2015 18:04:27 GMT</pubDate>
    <dc:creator>GraphGuy</dc:creator>
    <dc:date>2015-10-06T18:04:27Z</dc:date>
    <item>
      <title>HTMLPANEL bordercolor</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/HTMLPANEL-bordercolor/m-p/218630#M8153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good Morning,&lt;/P&gt;&lt;P&gt;I´m trying to make a HTMLPANEL with sgplot.&lt;/P&gt;&lt;P&gt;I dont know how to do for put ' panelborder color=black', just like my background color.&lt;/P&gt;&lt;P&gt;Can you help me please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods tagsets.htmlpanel nogtitle path = '/DIOGEN/sas/tmp/informes' (url=none) OPTIONS(embedded_titles='yes')style=style.commodities&lt;/P&gt;&lt;P&gt;body="prueba.html" headtext="&amp;lt;div style=""text-align:center;color:#ffffff;width:100%;&lt;/P&gt;&lt;P&gt;font-weight:bold; font-size:16pt""&amp;gt;Informe Commodities de Precios Medios &amp;amp;FC_EJECUCION&amp;lt;/div&amp;gt;&amp;lt;br/&amp;gt;" ;&lt;/P&gt;&lt;P&gt;ods tagsets.htmlpanel event=panel(start) options(panelborder='10');&lt;/P&gt;&lt;P&gt;title;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2015 09:11:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/HTMLPANEL-bordercolor/m-p/218630#M8153</guid>
      <dc:creator>PFAN</dc:creator>
      <dc:date>2015-05-25T09:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: HTMLPANEL bordercolor</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/HTMLPANEL-bordercolor/m-p/228682#M8290</link>
      <description>&lt;P&gt;One way to do this (and perhaps the only way?) would be to modify the 'bordercolor' in the ods style.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's a short example that demonstrates how to do this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let name=pan001;
filename odsout '.';

ods path work.template(update) sashelp.tmplmst;
proc template;
 define style styles.bcolor;
  parent = styles.htmlblue;
  replace Output from Container / bordercolor = red;
 end;
run;

%let panelcolumns=2;
ods tagsets.htmlpanel path=odsout file="&amp;amp;name..htm" style=bcolor;
ods tagsets.htmlpanel event = panel(start);

goptions device=png xpixels=400 ypixels=400 border;

proc sort data=sashelp.class out=plotdata;
by sex;
run;

axis1 label=none value=(justify=right);
axis2 label=('Height') minor=none;
pattern1 v=s color=dodgerblue;

proc gchart data=plotdata;
by sex;
hbar name / descending type=sum sumvar=height
 nostats noframe space=0 maxis=axis1 raxis=axis2
 des='' name="&amp;amp;name";
run;

ods tagsets.htmlpanel event = panel(finish);

quit;
ods _all_ close;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And here's what the output looks like (notice the red borders)...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/404i5CC3391F810CF40D/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="htmlpanel_border_color.png" title="htmlpanel_border_color.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Oct 2015 17:54:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/HTMLPANEL-bordercolor/m-p/228682#M8290</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2015-10-06T17:54:54Z</dc:date>
    </item>
    <item>
      <title>Re: HTMLPANEL bordercolor</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/HTMLPANEL-bordercolor/m-p/228686#M8291</link>
      <description>&lt;P&gt;Hmm ... my solution works with gplot, but I'm not sure if it works with sgplot.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Oct 2015 18:04:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/HTMLPANEL-bordercolor/m-p/228686#M8291</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2015-10-06T18:04:27Z</dc:date>
    </item>
  </channel>
</rss>

