<?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: SGPANEL Causing Blank Page in ODS PDF in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/SGPANEL-Causing-Blank-Page-in-ODS-PDF/m-p/496930#M16986</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/45151"&gt;@RW9&lt;/a&gt;, thanks for the reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&amp;nbsp;&lt;SPAN&gt;You need to show the rest of the code, titles and such like.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Complete code was included in the attached ZIP file. I thought it would clutter things if I included the full code in the body. I'll just post full code in the body next time.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I tried NOGTITLE but got the same thing as before.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;SOLUTION:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Reducing the HEIGHT from 10.5 to 10.0 seemed to work (with or without NOGTITLE).&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 19 Sep 2018 12:38:57 GMT</pubDate>
    <dc:creator>ShaneRosanbalm</dc:creator>
    <dc:date>2018-09-19T12:38:57Z</dc:date>
    <item>
      <title>SGPANEL Causing Blank Page in ODS PDF</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SGPANEL-Causing-Blank-Page-in-ODS-PDF/m-p/496898#M16979</link>
      <description>&lt;P&gt;I am using ODS PDF to capture SGPANEL output. There are too many rows to fit on a single page (15), so I am using ROWS=5 to split the output across 3 pages.&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 pdf file="&amp;amp;path/changes.pdf";

proc sgpanel data=sc00;
   panelby function monthyear / columns=3 rows=5 novarname;
   series y=ratiofirst x=snapshotdt;
   series y=ratioprev x=snapshotdt;
   rowaxis display=(nolabel) refticks;
   colaxis display=(nolabel) refticks;
run;

ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The first 2 pages of output are fine, but the 3rd page contains only a title.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="title-only.png" style="width: 521px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/23374iD13F4772BA9F6D22/image-dimensions/521x189?v=v2" width="521" height="189" role="button" title="title-only.png" alt="title-only.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Then there is a 4th page that has a double-title (one in the image, one above the image).&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="title-double.png" style="width: 382px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/23376iA40374AEE71FE4E5/image-size/large?v=v2&amp;amp;px=999" role="button" title="title-double.png" alt="title-double.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is very mysterious! Any help is greatly appreciated. Complete code and output are attached. I am using 9.4m4.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Sep 2018 11:21:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SGPANEL-Causing-Blank-Page-in-ODS-PDF/m-p/496898#M16979</guid>
      <dc:creator>ShaneRosanbalm</dc:creator>
      <dc:date>2018-09-19T11:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: SGPANEL Causing Blank Page in ODS PDF</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SGPANEL-Causing-Blank-Page-in-ODS-PDF/m-p/496906#M16982</link>
      <description>&lt;P&gt;You need to show the rest of the code, titles and such like.&amp;nbsp; I would guess that either you have a title statement and an odstext, or a title and a by line or something along those lines.&amp;nbsp; You can tun off byline with:&lt;/P&gt;
&lt;PRE&gt;options nobyline;&lt;/PRE&gt;
&lt;P&gt;Also, maybe check where titles are being stored,:&lt;BR /&gt;&lt;A href="http://support.sas.com/kb/47/306.html" target="_blank"&gt;http://support.sas.com/kb/47/306.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;So maybe:&lt;/P&gt;
&lt;PRE&gt;ods pdf file=".." nogtitle;&lt;/PRE&gt;
&lt;P&gt;Just guessing from what you posted here.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Sep 2018 11:42:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SGPANEL-Causing-Blank-Page-in-ODS-PDF/m-p/496906#M16982</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-09-19T11:42:45Z</dc:date>
    </item>
    <item>
      <title>Re: SGPANEL Causing Blank Page in ODS PDF</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SGPANEL-Causing-Blank-Page-in-ODS-PDF/m-p/496930#M16986</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/45151"&gt;@RW9&lt;/a&gt;, thanks for the reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&amp;nbsp;&lt;SPAN&gt;You need to show the rest of the code, titles and such like.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Complete code was included in the attached ZIP file. I thought it would clutter things if I included the full code in the body. I'll just post full code in the body next time.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I tried NOGTITLE but got the same thing as before.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;SOLUTION:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Reducing the HEIGHT from 10.5 to 10.0 seemed to work (with or without NOGTITLE).&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Sep 2018 12:38:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SGPANEL-Causing-Blank-Page-in-ODS-PDF/m-p/496930#M16986</guid>
      <dc:creator>ShaneRosanbalm</dc:creator>
      <dc:date>2018-09-19T12:38:57Z</dc:date>
    </item>
  </channel>
</rss>

