<?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 graphs and ods templates in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/graphs-and-ods-templates/m-p/57741#M6936</link>
    <description>Greetings,&lt;BR /&gt;
&lt;BR /&gt;
I have been trying to get my activeX graphs/charts to enter a template. A 2X2 template would be nice. I'm not married to activex, I just find that it produces the best results.  I can only seem to get the gseg charts into a template. I'm not fussy if I report in html or pdf.&lt;BR /&gt;
&lt;BR /&gt;
I've tried several examples on this site, but the results don't seem to work with my gchart ouputs.&lt;BR /&gt;
&lt;BR /&gt;
Some general and specific help would be appreciated.&lt;BR /&gt;
&lt;BR /&gt;
Best,&lt;BR /&gt;
&lt;BR /&gt;
D.</description>
    <pubDate>Wed, 29 Oct 2008 14:00:53 GMT</pubDate>
    <dc:creator>BigD</dc:creator>
    <dc:date>2008-10-29T14:00:53Z</dc:date>
    <item>
      <title>graphs and ods templates</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/graphs-and-ods-templates/m-p/57741#M6936</link>
      <description>Greetings,&lt;BR /&gt;
&lt;BR /&gt;
I have been trying to get my activeX graphs/charts to enter a template. A 2X2 template would be nice. I'm not married to activex, I just find that it produces the best results.  I can only seem to get the gseg charts into a template. I'm not fussy if I report in html or pdf.&lt;BR /&gt;
&lt;BR /&gt;
I've tried several examples on this site, but the results don't seem to work with my gchart ouputs.&lt;BR /&gt;
&lt;BR /&gt;
Some general and specific help would be appreciated.&lt;BR /&gt;
&lt;BR /&gt;
Best,&lt;BR /&gt;
&lt;BR /&gt;
D.</description>
      <pubDate>Wed, 29 Oct 2008 14:00:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/graphs-and-ods-templates/m-p/57741#M6936</guid>
      <dc:creator>BigD</dc:creator>
      <dc:date>2008-10-29T14:00:53Z</dc:date>
    </item>
    <item>
      <title>Re: graphs and ods templates</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/graphs-and-ods-templates/m-p/57742#M6937</link>
      <description>Without code and environment specification, it is difficult to guess why.&lt;BR /&gt;
&lt;BR /&gt;
Do you know that activex is only working with Microsoft products (IE and Office)?&lt;BR /&gt;
&lt;BR /&gt;
Andre</description>
      <pubDate>Wed, 29 Oct 2008 14:33:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/graphs-and-ods-templates/m-p/57742#M6937</guid>
      <dc:creator>Andre</dc:creator>
      <dc:date>2008-10-29T14:33:54Z</dc:date>
    </item>
    <item>
      <title>Re: graphs and ods templates</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/graphs-and-ods-templates/m-p/57743#M6938</link>
      <description>I don't know if activeX is working with other products. I would be happy to produce html pages or rtf pages.&lt;BR /&gt;
&lt;BR /&gt;
Using ver 9.3.1 service pack 4 on wXP.&lt;BR /&gt;
&lt;BR /&gt;
Here's the code: Its from the sas web and modified by substituting my graph procedures. A problem is that it seems to double up the html output. And of course the pdf uses the gseg members.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
options orientation=portrait;&lt;BR /&gt;
goptions reset=all dev=activex ftext="Courier/oblique";&lt;BR /&gt;
ods listing close;&lt;BR /&gt;
ods pdf file="FourVbars.pdf" startpage=never;&lt;BR /&gt;
&lt;BR /&gt;
goptions hsize=0 vsize=0;&lt;BR /&gt;
*proc gslide;&lt;BR /&gt;
&lt;BR /&gt;
*title1 'YOUR HOSPITAL ED Stats 2007/08' lspace=.5in;&lt;BR /&gt;
*run;*quit;&lt;BR /&gt;
goptions horigin=0 vorigin=5 hsize=4 vsize=4;&lt;BR /&gt;
*axis1 order=(0 to 10);&lt;BR /&gt;
title1 'Spring';&lt;BR /&gt;
&lt;BR /&gt;
proc gchart data=one;&lt;BR /&gt;
where hospital = "YOUR HOSPITAL" ;&lt;BR /&gt;
hbar REG_WEEKDAY &lt;BR /&gt;
  / AXIS=AXIS1 midpoints= (1 2 3 4 5 6 7)&lt;BR /&gt;
			freqlabel=''&lt;BR /&gt;
			PERCENT&lt;BR /&gt;
			noframe&lt;BR /&gt;
			patternid=midpoint&lt;BR /&gt;
 SUMVAR=VISITS&lt;BR /&gt;
    width=20&lt;BR /&gt;
    space=0&lt;BR /&gt;
	RAXIS=AXIS3&lt;BR /&gt;
;	&lt;BR /&gt;
run;&lt;BR /&gt;
run;quit;&lt;BR /&gt;
goptions horigin=4 vorigin=5;&lt;BR /&gt;
title1 'Summer';&lt;BR /&gt;
pattern1 value=solid color=cxffcc33;&lt;BR /&gt;
proc gchart data=ONE;&lt;BR /&gt;
format reg_time time_fmt.;&lt;BR /&gt;
where hospital = "YOUR HOSPITAL" ;&lt;BR /&gt;
hbar TIME_OF_DAY&lt;BR /&gt;
 &lt;BR /&gt;
  / AXIS=AXIS1&lt;BR /&gt;
/*midpoints= (1 2 3 4 5 6 7)*/&lt;BR /&gt;
			freqlabel=''&lt;BR /&gt;
			noframe&lt;BR /&gt;
			patternid=midpoint&lt;BR /&gt;
 SUMVAR=VISITS&lt;BR /&gt;
        PERCENT&lt;BR /&gt;
    width=100&lt;BR /&gt;
    space=0&lt;BR /&gt;
	RAXIS=AXIS3&lt;BR /&gt;
;	&lt;BR /&gt;
run;&lt;BR /&gt;
run;quit;&lt;BR /&gt;
&lt;BR /&gt;
goptions horigin=0 vorigin=0;&lt;BR /&gt;
title1 'Fall';&lt;BR /&gt;
pattern1 value=solid color=cxaa3311;&lt;BR /&gt;
proc gchart data=one;&lt;BR /&gt;
FORMAT TRIAGE_LEVEL CTAS.;&lt;BR /&gt;
where hospital = "YOUR HOSPITAL" ;&lt;BR /&gt;
hbar TRIAGE_LEVEL&lt;BR /&gt;
  / AXIS=AXIS1 MIDPOINTS = (1 2 3 4 5)&lt;BR /&gt;
			freqlabel=''&lt;BR /&gt;
			noframe&lt;BR /&gt;
			patternid=midpoint&lt;BR /&gt;
			PERCENT&lt;BR /&gt;
 SUMVAR=VISITS&lt;BR /&gt;
     width=50&lt;BR /&gt;
    space=0&lt;BR /&gt;
	RAXIS=AXIS3&lt;BR /&gt;
;	&lt;BR /&gt;
run;quit;&lt;BR /&gt;
goptions horigin=4 vorigin=0;&lt;BR /&gt;
title1 'Winter';&lt;BR /&gt;
pattern1 value=solid color=cx99ccff;&lt;BR /&gt;
proc gchart data=one;&lt;BR /&gt;
where hospital = "YOUR HOSPITAL" ;&lt;BR /&gt;
FORMAT DISPOSITION_STATUS $DISPOSITION.;&lt;BR /&gt;
hbar DISPOSITION_STATUS&lt;BR /&gt;
  / AXIS=AXIS1 midpoints= (1 2 3 4 5 6 7)&lt;BR /&gt;
			freqlabel=''&lt;BR /&gt;
			noframe&lt;BR /&gt;
			patternid=midpoint&lt;BR /&gt;
			PERCENT&lt;BR /&gt;
 SUMVAR=VISITS&lt;BR /&gt;
        &lt;BR /&gt;
    width=5&lt;BR /&gt;
    space=0&lt;BR /&gt;
	RAXIS=AXIS3&lt;BR /&gt;
;	&lt;BR /&gt;
run;&lt;BR /&gt;
ods html close;&lt;BR /&gt;
ods pdf close;&lt;BR /&gt;
goptions reset=all;&lt;BR /&gt;
ods listing;</description>
      <pubDate>Wed, 29 Oct 2008 15:04:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/graphs-and-ods-templates/m-p/57743#M6938</guid>
      <dc:creator>BigD</dc:creator>
      <dc:date>2008-10-29T15:04:40Z</dc:date>
    </item>
    <item>
      <title>Re: graphs and ods templates</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/graphs-and-ods-templates/m-p/57744#M6939</link>
      <description>Bigd,&lt;BR /&gt;
&lt;BR /&gt;
I have already make perfect pdf with the goptions method &lt;BR /&gt;
but in your code the last quit; is missing to close the last proc&lt;BR /&gt;
and i don't see the opening of your html destination.&lt;BR /&gt;
&lt;BR /&gt;
now in pdf  destination i never use activex!&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
i have an long example on sas-l&lt;BR /&gt;
Re: Multiple bar charts sent to same output page&lt;BR /&gt;
posted  on  8 Feb 2008&lt;BR /&gt;
presenting an rtf production &lt;BR /&gt;
and a rtf production&lt;BR /&gt;
&lt;BR /&gt;
you were speaking about one more : html  &lt;BR /&gt;
&lt;BR /&gt;
i agree with you that you have the gseg already&lt;BR /&gt;
so for the html destination&lt;BR /&gt;
you could try the greplay only but separated from the other destination you&lt;BR /&gt;
may choice.&lt;BR /&gt;
&lt;BR /&gt;
In my example of course there are some french and european touches&lt;BR /&gt;
as we are using herer  a4 paper and not legal  and using cm and not inches.&lt;BR /&gt;
&lt;BR /&gt;
HTH &lt;BR /&gt;
Andre&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
see the code at&lt;BR /&gt;
&lt;A href="http://groups.google.com/group/comp.soft-sys.sas/browse_thread/thread/d44873e40e527f34/5ad3125485add9f4?lnk=gst" target="_blank"&gt;http://groups.google.com/group/comp.soft-sys.sas/browse_thread/thread/d44873e40e527f34/5ad3125485add9f4?lnk=gst&lt;/A&gt;</description>
      <pubDate>Wed, 29 Oct 2008 17:02:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/graphs-and-ods-templates/m-p/57744#M6939</guid>
      <dc:creator>Andre</dc:creator>
      <dc:date>2008-10-29T17:02:23Z</dc:date>
    </item>
  </channel>
</rss>

