<?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: ODS PDF graph layout in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/ODS-PDF-graph-layout/m-p/482962#M16660</link>
    <description>&lt;P&gt;Update,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have changed the code to the following.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In Results - SAS Report view the graphs appear side by side.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When you pen the PDF file the graphs are below each other.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods PDF file="Test.PDF" notoc style=color;
ods layout start columns=2;
	Options papersize= ("11.69in", "16.54in") orientation=landscape;
	ods region width=6in;
		ods graphics / width=6in height=3in;

		Proc SGPLOT data=test noborder dattrmap=attrmap;
			Title "Entered";
			VBAR EVENT_DT / Response=ENTERED Group=Simplification attrid=myid nooutline seglabel seglabelattrs=(weight=Bold color=WHITE size=8 );
			yaxis display=(noline noticks) grid values=(0 to 150 by 10) offsetmin=0 label='Entered';
		RUN;

		Proc SGPLOT data=test noborder dattrmap=attrmap;
			Title "Answered";
			VBAR EVENT_DT / Response=ANSWERED Group=Simplification attrid=myid nooutline seglabel seglabelattrs=(weight=Bold color=WHITE size=8 );
			yaxis display=(noline noticks) grid values=(0 to 150 by 10) offsetmin=0 label='Answered';
		RUN;

	ods region width=6in;

		Proc SGPLOT data=test noborder dattrmap=attrmap;
			Title "Abandoned";
			VBAR EVENT_DT / Response=ABANDONED Group=Simplification attrid=myid nooutline seglabel seglabelattrs=(weight=Bold color=WHITE size=8 );
			yaxis display=(noline noticks) grid values=(0 to 150 by 10) offsetmin=0 label='Abandoned';
		RUN;

		Proc SGPLOT data=test noborder dattrmap=attrmap;
			Title "Agent";
			VBAR EVENT_DT / Response=Agent  Group=Simplification attrid=myid nooutline seglabel seglabelattrs=(weight=Bold color=WHITE size=8 );
			yaxis display=(noline noticks) grid values=(0 to 50 by 5) offsetmin=0 label='Agent';
		RUN;

		title;
ods layout end;
ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dean&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;</description>
    <pubDate>Tue, 31 Jul 2018 22:46:19 GMT</pubDate>
    <dc:creator>DME790</dc:creator>
    <dc:date>2018-07-31T22:46:19Z</dc:date>
    <item>
      <title>ODS PDF graph layout</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ODS-PDF-graph-layout/m-p/482712#M16653</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to use ODS PDF and ODS Layout Gridded to place graphs side by side on A3.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the following code but the graphs are very small and they don't sit side by side.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried different code and this gets me close.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
input event_dt :yymmdd. group $ Simplification $ ENTERED ANSWERED ABANDONED Agent;
format event_dt yymmdd10.;

DATALINES;
2018-07-09 AAA PreSimp 127 118 8 25
2018-07-10 AAA PreSimp 106 99 6 29
2018-07-11 AAA PreSimp 108 97 11 24
2018-07-12 AAA PreSimp 131 113 18 30
2018-07-13 AAA PreSimp 120 106 13 26
2018-07-16 AAA PreSimp 105 96 8 29
2018-07-17 AAA PreSimp 86 69 15 24
2018-07-18 AAA PreSimp 105 89 16 30
2018-07-19 AAA PreSimp 110 97 12 22
2018-07-20 AAA PreSimp 72 65 7 26
2018-07-23 AAA PreSimp 96 89 7 25
2018-07-24 AAA PreSimp 101 92 7 28
2018-07-25 AAA PreSimp 103 92 11 27
2018-07-26 AAA PreSimp 92 84 7 30
2018-07-27 AAA PreSimp 92 86 5 21
2018-07-30 AAA PostSimp 85 77 8 20
2018-07-30 AAA PostSimp 85 77 8 29
;
RUN;



data attrmap;
retain id "myid";
input value :&amp;amp;$10. fillcolor $8.;
datalines;
Pre Simp   VIBG
Post Simp  BIBG
;
run;


ods PDF file="/sasdata/clk/dev/SERVPERFCO/SDPAGENUSER/BIS/Data/SASLib/0.Blended/CAR/misc/AAA_results.PDF";
options  leftmargin=.5in rightmargin=.5in orientation=landscape nocenter;
ods listing close;

ods layout gridded
	columns=2 width=2in;


Proc SGPLOT data=test noborder dattrmap=attrmap;
	Title "Entered";
	VBAR EVENT_DT / Response=ENTERED Group=Simplification attrid=myid nooutline seglabel seglabelattrs=(weight=Bold color=WHITE size=8 );
	yaxis display=(noline noticks) grid values=(0 to 150 by 10) offsetmin=0 label='Entered';
RUN;

ods layout gridded
	columns=2 width=2in;

Proc SGPLOT data=test noborder dattrmap=attrmap;
	Title "Answered";
	VBAR EVENT_DT / Response=ANSWERED Group=Simplification attrid=myid nooutline seglabel seglabelattrs=(weight=Bold color=WHITE size=8 );
	yaxis display=(noline noticks) grid values=(0 to 150 by 10) offsetmin=0 label='Answered';
RUN;

ods layout gridded
	columns=2 ;

Proc SGPLOT data=test noborder dattrmap=attrmap;
	Title "Abandoned";
	VBAR EVENT_DT / Response=ABANDONED Group=Simplification attrid=myid nooutline seglabel seglabelattrs=(weight=Bold color=WHITE size=8 );
	yaxis display=(noline noticks) grid values=(0 to 150 by 10) offsetmin=0 label='Abandoned';
RUN;

ods layout gridded
	columns=2 ;
Proc SGPLOT data=test noborder dattrmap=attrmap;
	Title "Agent";
	VBAR EVENT_DT / Response=Agent  Group=Simplification attrid=myid nooutline seglabel seglabelattrs=(weight=Bold color=WHITE size=8 );
	yaxis display=(noline noticks) grid values=(0 to 50 by 5) offsetmin=0 label='Agent';
RUN;


title;
ods layout end;
ODS PDF close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dean&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Jul 2018 06:50:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ODS-PDF-graph-layout/m-p/482712#M16653</guid>
      <dc:creator>DME790</dc:creator>
      <dc:date>2018-07-31T06:50:25Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF graph layout</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ODS-PDF-graph-layout/m-p/482962#M16660</link>
      <description>&lt;P&gt;Update,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have changed the code to the following.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In Results - SAS Report view the graphs appear side by side.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When you pen the PDF file the graphs are below each other.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods PDF file="Test.PDF" notoc style=color;
ods layout start columns=2;
	Options papersize= ("11.69in", "16.54in") orientation=landscape;
	ods region width=6in;
		ods graphics / width=6in height=3in;

		Proc SGPLOT data=test noborder dattrmap=attrmap;
			Title "Entered";
			VBAR EVENT_DT / Response=ENTERED Group=Simplification attrid=myid nooutline seglabel seglabelattrs=(weight=Bold color=WHITE size=8 );
			yaxis display=(noline noticks) grid values=(0 to 150 by 10) offsetmin=0 label='Entered';
		RUN;

		Proc SGPLOT data=test noborder dattrmap=attrmap;
			Title "Answered";
			VBAR EVENT_DT / Response=ANSWERED Group=Simplification attrid=myid nooutline seglabel seglabelattrs=(weight=Bold color=WHITE size=8 );
			yaxis display=(noline noticks) grid values=(0 to 150 by 10) offsetmin=0 label='Answered';
		RUN;

	ods region width=6in;

		Proc SGPLOT data=test noborder dattrmap=attrmap;
			Title "Abandoned";
			VBAR EVENT_DT / Response=ABANDONED Group=Simplification attrid=myid nooutline seglabel seglabelattrs=(weight=Bold color=WHITE size=8 );
			yaxis display=(noline noticks) grid values=(0 to 150 by 10) offsetmin=0 label='Abandoned';
		RUN;

		Proc SGPLOT data=test noborder dattrmap=attrmap;
			Title "Agent";
			VBAR EVENT_DT / Response=Agent  Group=Simplification attrid=myid nooutline seglabel seglabelattrs=(weight=Bold color=WHITE size=8 );
			yaxis display=(noline noticks) grid values=(0 to 50 by 5) offsetmin=0 label='Agent';
		RUN;

		title;
ods layout end;
ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dean&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;</description>
      <pubDate>Tue, 31 Jul 2018 22:46:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ODS-PDF-graph-layout/m-p/482962#M16660</guid>
      <dc:creator>DME790</dc:creator>
      <dc:date>2018-07-31T22:46:19Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF graph layout</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ODS-PDF-graph-layout/m-p/484252#M16689</link>
      <description>&lt;P&gt;This doesn't make sense:&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token procnames"&gt;opions&lt;/SPAN&gt; papersize&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;"11.69in"&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"16.54in"&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt; orientation&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;landscape&lt;SPAN class="token punctuation"&gt;; &lt;BR /&gt;ods region width=6in;&lt;/SPAN&gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;width=5in&lt;/FONT&gt; works.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Aug 2018 04:08:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ODS-PDF-graph-layout/m-p/484252#M16689</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-08-06T04:08:52Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF graph layout</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ODS-PDF-graph-layout/m-p/484257#M16690</link>
      <description>&lt;P&gt;Hi&amp;nbsp; &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The below code I'm trying to assign the output to A3 size as the final output I need has 3 x 3 .&amp;nbsp; Should I be using a different code to output to A3?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;opions papersize= ("11.69in", "16.54in") orientation=landscape; ods region width=6in;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dean&lt;/P&gt;</description>
      <pubDate>Mon, 06 Aug 2018 04:37:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ODS-PDF-graph-layout/m-p/484257#M16690</guid>
      <dc:creator>DME790</dc:creator>
      <dc:date>2018-08-06T04:37:02Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF graph layout</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ODS-PDF-graph-layout/m-p/484569#M16693</link>
      <description>&lt;P&gt;This works for me:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;goptions dev=actximg;
              
options papersize=A3 orientation=landscape leftmargin=1cm rightmargin=1cm; 

ods _ALL_ close;
ods PDF file="%sysfunc(pathname(WORK))\results.PDF";
ods layout gridded columns=3 order_type=row_major column_gutter=1cm advance=output;
                                                                          
ods region width=12cm; proc sgplot data=SASHELP.CLASS; vbar AGE / response=WEIGHT ; run;   
ods region width=12cm; proc sgplot data=SASHELP.CLASS; vbar AGE / response=WEIGHT ; run;  
ods region width=12cm; proc sgplot data=SASHELP.CLASS; vbar AGE / response=WEIGHT ; run;
ods region width=12cm; proc sgplot data=SASHELP.CLASS; vbar AGE / response=WEIGHT ; run;
ods region width=12cm; proc sgplot data=SASHELP.CLASS; vbar AGE / response=WEIGHT ; run;
ods region width=12cm; proc sgplot data=SASHELP.CLASS; vbar AGE / response=WEIGHT ; run;  
ods region width=12cm; proc sgplot data=SASHELP.CLASS; vbar AGE / response=WEIGHT ; run;
ods region width=12cm; proc sgplot data=SASHELP.CLASS; vbar AGE / response=WEIGHT ; run;
ods region width=12cm; proc sgplot data=SASHELP.CLASS; vbar AGE / response=WEIGHT ; run;

ods layout end;
ods PDF close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.GIF" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/22280i011DA9E765D2FBD7/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.GIF" alt="Capture.GIF" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wonder why there is this message though:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;WARNING: WIDTH exceeds available space for PDF destination. Setting WIDTH=4.726667in.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Aug 2018 23:03:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ODS-PDF-graph-layout/m-p/484569#M16693</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-08-06T23:03:23Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF graph layout</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ODS-PDF-graph-layout/m-p/485308#M16742</link>
      <description>&lt;P&gt;Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help on this one - I ran the code you tried and I don't get an error but the output ends up being on two pages&amp;nbsp; - I have attached the PDF file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could it be the 'printer' and/or settings that could play around with the settings? &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Aug 2018 23:34:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ODS-PDF-graph-layout/m-p/485308#M16742</guid>
      <dc:creator>DME790</dc:creator>
      <dc:date>2018-08-08T23:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF graph layout</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ODS-PDF-graph-layout/m-p/485311#M16743</link>
      <description>&lt;P&gt;Your graphs look too tall to fit. Set the height of your graphs.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Aug 2018 23:48:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ODS-PDF-graph-layout/m-p/485311#M16743</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-08-08T23:48:43Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF graph layout</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ODS-PDF-graph-layout/m-p/485316#M16744</link>
      <description>&lt;P&gt;Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I set the height and now it all fits onto a page.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can I ask what is the purpose of the ODS_ALL_ close; statement and why does it sit after the goptions and options.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I thought this would cancel out anything above it?&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;goptions dev=actximg;
options papersize=A3 orientation=landscape leftmargin=1cm rightmargin=1cm;
ods _ALL_ close;
ods PDF file="%sysfunc(pathname(WORK))\results.PDF";
ods layout gridded columns=3 order_type=row_major column_gutter=1cm advance=output;
ods region width=12cm height=8.cm ;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dean&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Aug 2018 00:11:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ODS-PDF-graph-layout/m-p/485316#M16744</guid>
      <dc:creator>DME790</dc:creator>
      <dc:date>2018-08-09T00:11:29Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF graph layout</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ODS-PDF-graph-layout/m-p/485317#M16745</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Glad to hear!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;FONT face="courier new,courier"&gt;ODS _ALL_ close;&amp;nbsp;&lt;/FONT&gt;closes all&amp;nbsp; ODS destinations. It does not reset goptions.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You can use &lt;FONT face="courier new,courier"&gt;goptions reset=all&amp;nbsp;&lt;/FONT&gt;for that, although most goptions do not affect&amp;nbsp;&lt;FONT face="courier new,courier"&gt; proc SG*&lt;/FONT&gt; outputs.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Aug 2018 00:15:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ODS-PDF-graph-layout/m-p/485317#M16745</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-08-09T00:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF graph layout</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ODS-PDF-graph-layout/m-p/485318#M16746</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help Chris - I moved the code over to my program and now it doesn't return anything - blank PDF paper.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Going to rewrite my whole code as the code that you helped&amp;nbsp;with works.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you are a Rugby supporter good luck in the Bledisloe Cup this year.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dean&lt;/P&gt;</description>
      <pubDate>Thu, 09 Aug 2018 00:28:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ODS-PDF-graph-layout/m-p/485318#M16746</guid>
      <dc:creator>DME790</dc:creator>
      <dc:date>2018-08-09T00:28:27Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF graph layout</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ODS-PDF-graph-layout/m-p/485332#M16747</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hey Chris&amp;nbsp; - thanks for all your help it is much appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I now have it all working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dean&lt;/P&gt;</description>
      <pubDate>Thu, 09 Aug 2018 02:17:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ODS-PDF-graph-layout/m-p/485332#M16747</guid>
      <dc:creator>DME790</dc:creator>
      <dc:date>2018-08-09T02:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF graph layout</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/ODS-PDF-graph-layout/m-p/485334#M16748</link>
      <description>&lt;P&gt;Glad it works, and good on you! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Aug 2018 02:23:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/ODS-PDF-graph-layout/m-p/485334#M16748</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-08-09T02:23:27Z</dc:date>
    </item>
  </channel>
</rss>

