<?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: Image at top of page In Sas graph in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Image-at-top-of-page-In-Sas-graph/m-p/30078#M885</link>
    <description>Hi: &lt;BR /&gt;
  When you say that you need to put an image at the top of a page -- do you mean another SAS/GRAPH image or do you mean an image like a company logo???&lt;BR /&gt;
 &lt;BR /&gt;
  If you mean a logo, this Tech Support note explains how to do it:&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/22/245.html" target="_blank"&gt;http://support.sas.com/kb/22/245.html&lt;/A&gt;&lt;BR /&gt;
 &lt;BR /&gt;
  If you need to have a separate SAS/GRAPH image together with the output from the GCHART step, you should investigate PROC GREPLAY.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
    <pubDate>Mon, 14 Dec 2009 23:41:14 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2009-12-14T23:41:14Z</dc:date>
    <item>
      <title>Image at top of page In Sas graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Image-at-top-of-page-In-Sas-graph/m-p/30077#M884</link>
      <description>I need to put an image at the top of a page. I have the following code:&lt;BR /&gt;
&lt;BR /&gt;
ods pdf file= "C:\PC_SAS\GRAPH_PAGE4.pdf" startpage=never;&lt;BR /&gt;
ods escapechar='^';&lt;BR /&gt;
goptions hsize=3.0 in vsize=3.0 in&lt;BR /&gt;
         ftext='Ariel' htext=2 gunit=pct;&lt;BR /&gt;
symbol1 v=dot i=join;&lt;BR /&gt;
proc gchart data=example7;&lt;BR /&gt;
goptions horigin=0 in vorigin=7.50 in;&lt;BR /&gt;
title2 'Graph 1 ';&lt;BR /&gt;
pie3d flavor / sumvar=calories noheading&lt;BR /&gt;
			 fill=solid &lt;BR /&gt;
	         slice=none &lt;BR /&gt;
	         value=outside&lt;BR /&gt;
             clockwise coutline=BL legend=legend1 &lt;BR /&gt;
             explode="Apple" "Blueberry";&lt;BR /&gt;
legend1 label=none position=(left middle) offset=(2, 4) across=1&lt;BR /&gt;
order=("Apple" "Blueberry") ;&lt;BR /&gt;
pattern1 color=CX0000FF ;&lt;BR /&gt;
pattern2 color=CXFF8000 ;&lt;BR /&gt;
symbol1 interpol=join width=10&lt;BR /&gt;
font=swiss value=-;&lt;BR /&gt;
run ;&lt;BR /&gt;
quit ;&lt;BR /&gt;
&lt;BR /&gt;
Would it need to go into the ODS statement?</description>
      <pubDate>Mon, 14 Dec 2009 15:08:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Image-at-top-of-page-In-Sas-graph/m-p/30077#M884</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-12-14T15:08:31Z</dc:date>
    </item>
    <item>
      <title>Re: Image at top of page In Sas graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Image-at-top-of-page-In-Sas-graph/m-p/30078#M885</link>
      <description>Hi: &lt;BR /&gt;
  When you say that you need to put an image at the top of a page -- do you mean another SAS/GRAPH image or do you mean an image like a company logo???&lt;BR /&gt;
 &lt;BR /&gt;
  If you mean a logo, this Tech Support note explains how to do it:&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/22/245.html" target="_blank"&gt;http://support.sas.com/kb/22/245.html&lt;/A&gt;&lt;BR /&gt;
 &lt;BR /&gt;
  If you need to have a separate SAS/GRAPH image together with the output from the GCHART step, you should investigate PROC GREPLAY.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Mon, 14 Dec 2009 23:41:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Image-at-top-of-page-In-Sas-graph/m-p/30078#M885</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2009-12-14T23:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: Image at top of page In Sas graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Image-at-top-of-page-In-Sas-graph/m-p/30079#M886</link>
      <description>It was for a company logo.  I used the osds pdf an inserted the image there, but it shows on all 4 graphs. Is there a work around for that?&lt;BR /&gt;
&lt;BR /&gt;
ods pdf file= "C:\PC_SAS\GRAPH_PAGE4.pdf" startpage=never;&lt;BR /&gt;
ods escapechar='^';&lt;BR /&gt;
ods pdf text='^S={preimage="D:\Documents and Settings\amrapon\Desktop\Report\Logo For Top Of Report.jpg"}';&lt;BR /&gt;
ods pdf text=' ';&lt;BR /&gt;
ods pdf text=' ';&lt;BR /&gt;
goptions hsize=3.0 in vsize=3.0 in&lt;BR /&gt;
         htext=2 gunit=pct;&lt;BR /&gt;
symbol1 v=dot i=join;&lt;BR /&gt;
proc gchart data=example7;&lt;BR /&gt;
goptions horigin=0 in vorigin=7.50 in;&lt;BR /&gt;
title2 'Graph 1 ';&lt;BR /&gt;
pie3d flavor / sumvar=calories noheading&lt;BR /&gt;
			 fill=solid &lt;BR /&gt;
	         slice=none &lt;BR /&gt;
	         value=outside&lt;BR /&gt;
             clockwise coutline=BL legend=legend1 &lt;BR /&gt;
             explode="Apple" "Blueberry";&lt;BR /&gt;
legend1 label=none position=(left middle) offset=(2, 4) across=1&lt;BR /&gt;
order=("Apple" "Blueberry") ;&lt;BR /&gt;
pattern1 color=CX0000FF ;&lt;BR /&gt;
pattern2 color=CXFF8000 ;&lt;BR /&gt;
symbol1 interpol=join width=10&lt;BR /&gt;
font=swiss value=-;&lt;BR /&gt;
run ;&lt;BR /&gt;
quit ;&lt;BR /&gt;
&lt;BR /&gt;
proc gchart data=example6 ;&lt;BR /&gt;
goptions horigin=0 vorigin=3.99 in;&lt;BR /&gt;
title2 'Graph 2';&lt;BR /&gt;
pie3d flavor / sumvar=calories noheading&lt;BR /&gt;
			 fill=solid &lt;BR /&gt;
	         slice=none &lt;BR /&gt;
	         value=outside&lt;BR /&gt;
             clockwise coutline=BL legend=legend1 &lt;BR /&gt;
             explode="Apple" "Blueberry" "Peach" "Cherry" "Pecan";&lt;BR /&gt;
legend1 label=none position=(left middle) offset=(2, 4) across=1&lt;BR /&gt;
order=("Apple" "Blueberry" "Peach" "Cherry" "Pecan") ;&lt;BR /&gt;
pattern1 color=CX0000FF ;&lt;BR /&gt;
pattern2 color=CX00FF00 ;&lt;BR /&gt;
pattern3 color=CXFF0000 ;&lt;BR /&gt;
pattern4 color=CXFF8000 ;&lt;BR /&gt;
pattern5 color=CXFFFF00;&lt;BR /&gt;
symbol1 interpol=join width=10&lt;BR /&gt;
font=swiss value=-;&lt;BR /&gt;
run ;&lt;BR /&gt;
quit ;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
proc gchart data=example6 ;&lt;BR /&gt;
goptions horigin=4 in vorigin=7.50 in ;&lt;BR /&gt;
title2 'Graph 3';&lt;BR /&gt;
pie3d flavor / sumvar=calories noheading&lt;BR /&gt;
			 fill=solid &lt;BR /&gt;
	         slice=none &lt;BR /&gt;
	         value=outside&lt;BR /&gt;
             clockwise coutline=BL legend=legend1 &lt;BR /&gt;
             explode="Apple" "Blueberry" "Peach" "Cherry" "Pecan";&lt;BR /&gt;
legend1 label=none position=(left middle) offset=(2, 4) across=1&lt;BR /&gt;
order=("Apple" "Blueberry" "Peach" "Cherry" "Pecan") ;&lt;BR /&gt;
pattern1 color=CX0000FF ;&lt;BR /&gt;
pattern2 color=CX00FF00 ;&lt;BR /&gt;
pattern3 color=CXFF0000 ;&lt;BR /&gt;
pattern4 color=CXFF8000 ;&lt;BR /&gt;
pattern5 color=CXFFFF00;&lt;BR /&gt;
run ;&lt;BR /&gt;
quit ;&lt;BR /&gt;
&lt;BR /&gt;
proc gchart data=example8 ;&lt;BR /&gt;
goptions horigin=4 in  vorigin=3.99 in;&lt;BR /&gt;
title2 'Graph 4';&lt;BR /&gt;
pie3d flavor / sumvar=calories noheading&lt;BR /&gt;
			 fill=solid &lt;BR /&gt;
	         slice=none &lt;BR /&gt;
	         value=outside&lt;BR /&gt;
             clockwise coutline=BL legend=legend1 &lt;BR /&gt;
             explode="Apple" "Blueberry" "Cherry";&lt;BR /&gt;
legend1 label=none position=(left middle) offset=(2, 4) across=1&lt;BR /&gt;
order=("Apple" "Blueberry" "Cherry") ;&lt;BR /&gt;
pattern1 color=CX0000FF ;&lt;BR /&gt;
pattern2 color=CXFF8000 ;&lt;BR /&gt;
symbol1 interpol=join width=10&lt;BR /&gt;
font=swiss value=-;&lt;BR /&gt;
run ;&lt;BR /&gt;
quit ;&lt;BR /&gt;
&lt;BR /&gt;
ods pdf close;</description>
      <pubDate>Tue, 15 Dec 2009 14:41:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Image-at-top-of-page-In-Sas-graph/m-p/30079#M886</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-12-15T14:41:45Z</dc:date>
    </item>
  </channel>
</rss>

