<?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: Put multiple PROC SGPLOT outputs on the same page in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Put-multiple-PROC-SGPLOT-outputs-on-the-same-page/m-p/153039#M40256</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;YOu might look into tagsets.HTMLPanel It allows defining percent of area for each graph displayed if you have a way to convert HTML to PDF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you need to make a custom template instead of using the L2R2 template. I haven't bothered with the syntax for a long time but its basically a set of coordinates as percent of display area. So make one area across the top, the four cells for the charts and and 6th area at the bottom. You'll need to create your Title and Footnote for gslide as well. You can have the areas overlap by coordinates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are examples in the online help under Greplay template code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: Changing the aspect ration in the graph cells may distort appearance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Jun 2014 16:38:43 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2014-06-24T16:38:43Z</dc:date>
    <item>
      <title>Put multiple PROC SGPLOT outputs on the same page</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Put-multiple-PROC-SGPLOT-outputs-on-the-same-page/m-p/153038#M40255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was trying to use the following code from &lt;A href="http://support.sas.com/kb/41/461.html" style="font-size: 10pt; line-height: 1.5em;" title="http://support.sas.com/kb/41/461.html"&gt;41461 - Put multiple PROC SGPLOT outputs on the same PDF page using PROC GREPLAY&lt;/A&gt;&lt;/P&gt;&lt;P class="p1"&gt;The output page has four graphs, no space for overall titles/footnotes. &lt;/P&gt;&lt;P class="p1"&gt;How can I put an overall title and footnote on top and bottom?&lt;/P&gt;&lt;P class="p1"&gt;Thanks for your help,&lt;/P&gt;&lt;P class="p1"&gt;Sandy&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;/P&gt;&lt;P class="p1"&gt;Change the value of the following macro&amp;nbsp;&amp;nbsp; */&lt;/P&gt;&lt;P class="p1"&gt;/* variable if you want to write the output&amp;nbsp; */&lt;/P&gt;&lt;P class="p1"&gt;/* from the sample code to a directory other */&lt;/P&gt;&lt;P class="p1"&gt;/* than C:\TEMP.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; */&lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;%let outdir=c:\temp;&amp;nbsp; &lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;options orientation=landscape nodate nonumber;&amp;nbsp; &lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;goptions reset=all;&amp;nbsp; &lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;/* This step uses multiple PROC SGPLOT procedures&amp;nbsp; */&lt;/P&gt;&lt;P class="p1"&gt;/* to write multiple PNG files to disk.&amp;nbsp; Note that */&lt;/P&gt;&lt;P class="p1"&gt;/* this step uses the IMAGENAME= option on the ODS */&lt;/P&gt;&lt;P class="p1"&gt;/* GRAPHICS ON statement to name each PNG file&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; */&lt;/P&gt;&lt;P class="p1"&gt;/* that is written to disk.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; */&lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;ods results off;&lt;/P&gt;&lt;P class="p1"&gt;ods listing close; &lt;/P&gt;&lt;P class="p1"&gt;ods html path="&amp;amp;outdir" (url=none) file='sastest.html'&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; image_dpi=300;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;ods graphics on / reset=index imagename='sgplot1' &lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; width=4in height=3in;&lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;title1 'First SGPLOT Output';&lt;/P&gt;&lt;P class="p1"&gt;proc sgplot data=sashelp.class;&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&amp;nbsp; scatter x=height y=weight / group=sex;&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&amp;nbsp; discretelegend;&lt;/P&gt;&lt;P class="p1"&gt;run;&lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;ods graphics on / imagename='sgplot2' &lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; width=4in height=3in;&lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;title1 'Second SGPLOT Output';&lt;/P&gt;&lt;P class="p1"&gt;proc sgplot data=sashelp.class;&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&amp;nbsp; scatter x=height y=weight / group=sex;&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&amp;nbsp; discretelegend;&lt;/P&gt;&lt;P class="p1"&gt;run;&lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;ods graphics on / imagename='sgplot3' &lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; width=4in height=3in;&lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;title1 'Third SGPLOT Output';&lt;/P&gt;&lt;P class="p1"&gt;proc sgplot data=sashelp.class;&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&amp;nbsp; scatter x=height y=weight / group=sex;&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&amp;nbsp; discretelegend;&lt;/P&gt;&lt;P class="p1"&gt;run;&lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;ods graphics on / imagename='sgplot4' &lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; width=4in height=3in;&lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;title1 'Fourth SGPLOT Output';&lt;/P&gt;&lt;P class="p1"&gt;proc sgplot data=sashelp.class;&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&amp;nbsp; scatter x=height y=weight / group=sex;&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&amp;nbsp; discretelegend;&lt;/P&gt;&lt;P class="p1"&gt;run;&lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;ods html close;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P class="p1"&gt;ods listing; &lt;/P&gt;&lt;P class="p1"&gt;ods results on; &lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;/* This step uses PROC GSLIDE with the IBACK= and */&lt;/P&gt;&lt;P class="p1"&gt;/* IMAGESTYLE= graphics options to read the PNG&amp;nbsp;&amp;nbsp; */&lt;/P&gt;&lt;P class="p1"&gt;/* files created in step 1 back into SAS.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; */&amp;nbsp; &lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;goptions reset=all device=png300 nodisplay&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmax=4in ymax=3in;&lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;goptions iback="&amp;amp;outdir.\sgplot1.png" imagestyle=fit; &lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;proc gslide; &lt;/P&gt;&lt;P class="p1"&gt;run;&lt;/P&gt;&lt;P class="p1"&gt;quit; &lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;goptions iback="&amp;amp;outdir.\sgplot2.png" imagestyle=fit; &lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;proc gslide; &lt;/P&gt;&lt;P class="p1"&gt;run;&lt;/P&gt;&lt;P class="p1"&gt;quit; &lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;goptions iback="&amp;amp;outdir.\sgplot3.png" imagestyle=fit; &lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;proc gslide; &lt;/P&gt;&lt;P class="p1"&gt;run;&lt;/P&gt;&lt;P class="p1"&gt;quit;&lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;goptions iback="&amp;amp;outdir.\sgplot4.png" imagestyle=fit; &lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;proc gslide; &lt;/P&gt;&lt;P class="p1"&gt;run;&lt;/P&gt;&lt;P class="p1"&gt;quit;&lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;/* This final step uses PROC GREPLAY to put four&amp;nbsp; */&lt;/P&gt;&lt;P class="p1"&gt;/* SGPLOT outputs on the same PDF page.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; */ &lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;goptions reset=all device=sasprtc; &lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;ods listing close; &lt;/P&gt;&lt;P class="p1"&gt;ods pdf file="&amp;amp;outdir.\greplay_sgplot.pdf" notoc dpi=300;&lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;proc greplay igout=work.gseg nofs tc=sashelp.templt&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; template=L2R2;&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&amp;nbsp; treplay 1:1 2:2 3:3 4:4;&lt;/P&gt;&lt;P class="p1"&gt;run;&lt;/P&gt;&lt;P class="p1"&gt;quit;&lt;/P&gt;&lt;P class="p2"&gt;&lt;/P&gt;&lt;P class="p1"&gt;ods pdf close; &lt;/P&gt;&lt;P class="p1"&gt;ods listing; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2014 21:58:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Put-multiple-PROC-SGPLOT-outputs-on-the-same-page/m-p/153038#M40255</guid>
      <dc:creator>sandyming</dc:creator>
      <dc:date>2014-06-23T21:58:32Z</dc:date>
    </item>
    <item>
      <title>Re: Put multiple PROC SGPLOT outputs on the same page</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Put-multiple-PROC-SGPLOT-outputs-on-the-same-page/m-p/153039#M40256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;YOu might look into tagsets.HTMLPanel It allows defining percent of area for each graph displayed if you have a way to convert HTML to PDF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you need to make a custom template instead of using the L2R2 template. I haven't bothered with the syntax for a long time but its basically a set of coordinates as percent of display area. So make one area across the top, the four cells for the charts and and 6th area at the bottom. You'll need to create your Title and Footnote for gslide as well. You can have the areas overlap by coordinates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are examples in the online help under Greplay template code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: Changing the aspect ration in the graph cells may distort appearance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2014 16:38:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Put-multiple-PROC-SGPLOT-outputs-on-the-same-page/m-p/153039#M40256</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2014-06-24T16:38:43Z</dc:date>
    </item>
    <item>
      <title>Re: Put multiple PROC SGPLOT outputs on the same page</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Put-multiple-PROC-SGPLOT-outputs-on-the-same-page/m-p/153040#M40257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2014 17:21:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Put-multiple-PROC-SGPLOT-outputs-on-the-same-page/m-p/153040#M40257</guid>
      <dc:creator>sandyming</dc:creator>
      <dc:date>2014-06-24T17:21:34Z</dc:date>
    </item>
    <item>
      <title>Re: Put multiple PROC SGPLOT outputs on the same page</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Put-multiple-PROC-SGPLOT-outputs-on-the-same-page/m-p/153041#M40258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Below is the setup I use for my title page utilizing PROC GSLIDE... This definitely works with the PROC GREPLAY combination with PROC GCHART output. I am still exploring the options to incorporate PROC SGPLOT output into my PROC GREPLAY setup.&lt;/P&gt;&lt;P&gt;Good luck...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;James&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;goptions&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;noborder&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: navy; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp; titlanno;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;length&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt; function&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; color $&lt;/SPAN&gt;&lt;SPAN style="color: teal; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;8&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style $&lt;/SPAN&gt;&lt;SPAN style="color: teal; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;12&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; position $&lt;/SPAN&gt;&lt;SPAN style="color: teal; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; text $&lt;/SPAN&gt;&lt;SPAN style="color: teal; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;50&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; html $&lt;/SPAN&gt;&lt;SPAN style="color: teal; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;100&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xsys = &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 10pt;"&gt;'3'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ysys = &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 10pt;"&gt;'3'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; hsys = &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 10pt;"&gt;'3'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when = &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 10pt;"&gt;'a'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 10pt;"&gt;/* Annotate title text at top of page */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;function = &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 10pt;"&gt;'label'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;style = &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 10pt;"&gt;"&amp;amp;font"&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;y = &lt;/SPAN&gt;&lt;SPAN style="color: teal; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;97.0&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;; x = &lt;/SPAN&gt;&lt;SPAN style="color: teal; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;0.5&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;; position = &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 10pt;"&gt;'6'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;; color = &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 10pt;"&gt;"&amp;amp;browntext"&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;; size = &lt;/SPAN&gt;&lt;SPAN style="color: teal; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;2.5&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;; text = &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 10pt;"&gt;'Main Title 1'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;; &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;output&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;y = &lt;/SPAN&gt;&lt;SPAN style="color: teal; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;94.5&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;; x = &lt;/SPAN&gt;&lt;SPAN style="color: teal; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;16.5&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;; position = &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 10pt;"&gt;'6'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;; color = &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 10pt;"&gt;"&amp;amp;browntext"&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;; size = &lt;/SPAN&gt;&lt;SPAN style="color: teal; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;2.5&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;; text = &lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 10pt;"&gt;'Main Title 2'&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;; &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;output&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 10pt;"&gt;/* y = 95.8; x = 32.0; position = '6'; color = "&amp;amp;graytext"; size = 1.7; text = 'SPARE SUB-TITLE SECTION 1'; output; */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green; font-size: 10pt;"&gt;/* y = 95.8; x = 90; position = '4'; color = "&amp;amp;graytext"; size = 1.7; text = 'SPARE SUB-TITLE SECTION 2'; output; */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;goptions&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;xpixels&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="color: teal; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;1200&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;ypixels&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="color: teal; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;800&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;title&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;footnote&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: navy; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN style="color: navy; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;gslide&lt;/STRONG&gt;&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;des&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 10pt;"&gt;""&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;name&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 10pt;"&gt;"titles"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 10pt;"&gt;anno&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt; = titlanno;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: navy; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jun 2014 16:34:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Put-multiple-PROC-SGPLOT-outputs-on-the-same-page/m-p/153041#M40258</guid>
      <dc:creator>jimevo888</dc:creator>
      <dc:date>2014-06-27T16:34:41Z</dc:date>
    </item>
    <item>
      <title>Re: Put multiple PROC SGPLOT outputs on the same page</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Put-multiple-PROC-SGPLOT-outputs-on-the-same-page/m-p/153042#M40259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you, it helps!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jul 2014 18:24:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Put-multiple-PROC-SGPLOT-outputs-on-the-same-page/m-p/153042#M40259</guid>
      <dc:creator>sandyming</dc:creator>
      <dc:date>2014-07-10T18:24:55Z</dc:date>
    </item>
    <item>
      <title>Re: Put multiple PROC SGPLOT outputs on the same page</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Put-multiple-PROC-SGPLOT-outputs-on-the-same-page/m-p/153043#M40260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For full SAS/GRAPH customization, you really want to go on the ANNOTATE and PROC GREPLAY path. I have developed a fully customized 6 chart data-driven dashboard with nested VBAR in one of the charts using the annotate facility within a PROC GCHART output. The graphing output is definitely less "spectacular" in comparison to the output from PROC SGPLOT but there is still plenty of potential to create some stunning charts within a dashboard template.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway good luck...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;James&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2014 12:49:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Put-multiple-PROC-SGPLOT-outputs-on-the-same-page/m-p/153043#M40260</guid>
      <dc:creator>jimevo888</dc:creator>
      <dc:date>2014-07-11T12:49:36Z</dc:date>
    </item>
  </channel>
</rss>

