<?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: Multiple Graphs in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Multiple-Graphs/m-p/632522#M19634</link>
    <description>Would SGPANEL stretch across pages?</description>
    <pubDate>Mon, 16 Mar 2020 19:26:29 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2020-03-16T19:26:29Z</dc:date>
    <item>
      <title>Multiple Graphs</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Multiple-Graphs/m-p/632515#M19631</link>
      <description>&lt;P&gt;Hi....I am trying to create multiple graphs for each Month and would like to have more than one graph on each page. In order to know which Month that each graph represents, I have included the bygroup in the title statement. Because I want to allow more than one graph on the same page, only the first graph on the page has a title for that graph. Is there another way to have the bygroup label each graph so that the appropriate month can be displayed for each graph. Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods rtf file="I:\Reports\file.rtf" startpage=no ;

options nobyline;

Axis1 style=1 width=1 minor=none label=(height=9pt font="arial/bold" angle=90  "Percent") value=(height=9pt font="arial" "0%" "10%" "20%" "30%" "40%" "50%" "60%" "70%" "80%" "90%" "100%") order=0 to 100 by 10;
Axis2 style=1 width=2 label=(height=9pt font="arial/bold"   "Response") value=(height=9pt font="arial");
Axis3 label=(height=9pt font="arial/bold"   "Intake") value=(height=9pt font="arial");

proc gchart data=Have;
title1 "Month: #byval(Month)";
	by Month;
	vbar Response / discrete group=Intake type=percent inside=percent outside=freq nolegend g100 
		coutline=black raxis=axis1 maxis=axis2 gaxis=axis3 woutline=1 patternid=midpoint width=20 autoref clipref cref=graycc ;
run; 
quit;
 
title1;

ods rtf close;
ods listing close;
ods _all_ close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 16 Mar 2020 18:18:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Multiple-Graphs/m-p/632515#M19631</guid>
      <dc:creator>twildone</dc:creator>
      <dc:date>2020-03-16T18:18:52Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Graphs</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Multiple-Graphs/m-p/632516#M19632</link>
      <description>1. Look at the BODYTITLE option&lt;BR /&gt;2. I highly recommend switching to SGPLOT instead of GCHART - you get better quality graphics and the code is simpler. &lt;BR /&gt;3. You may want to specify the size of the charts explicitly to ensure they fit on the page.</description>
      <pubDate>Mon, 16 Mar 2020 18:22:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Multiple-Graphs/m-p/632516#M19632</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-03-16T18:22:30Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Graphs</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Multiple-Graphs/m-p/632517#M19633</link>
      <description>&lt;P&gt;Use SGPANEL procedure, with PANELBY=month.&amp;nbsp; You can arrange the cells in the panel as you want, and include the month in the cell header.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2020 18:36:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Multiple-Graphs/m-p/632517#M19633</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2020-03-16T18:36:34Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Graphs</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Multiple-Graphs/m-p/632522#M19634</link>
      <description>Would SGPANEL stretch across pages?</description>
      <pubDate>Mon, 16 Mar 2020 19:26:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Multiple-Graphs/m-p/632522#M19634</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-03-16T19:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Graphs</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Multiple-Graphs/m-p/632526#M19635</link>
      <description>&lt;P&gt;Yes, SGPANEL supports automatic pagination.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2020 19:37:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Multiple-Graphs/m-p/632526#M19635</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2020-03-16T19:37:08Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Graphs</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Multiple-Graphs/m-p/632693#M19639</link>
      <description>Thanks DanH</description>
      <pubDate>Tue, 17 Mar 2020 15:15:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Multiple-Graphs/m-p/632693#M19639</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-03-17T15:15:00Z</dc:date>
    </item>
  </channel>
</rss>

