<?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: Title inside the graph (and not above) with proc sgplot in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Title-inside-the-graph-and-not-above-with-proc-sgplot/m-p/611545#M19223</link>
    <description>&lt;P&gt;Super! I struggled a day on footnotes to present inside the plot. the result came in a min after your reference. Thanks a lot Dan!&lt;/P&gt;</description>
    <pubDate>Fri, 13 Dec 2019 10:35:37 GMT</pubDate>
    <dc:creator>sutradhaari</dc:creator>
    <dc:date>2019-12-13T10:35:37Z</dc:date>
    <item>
      <title>Title inside the graph (and not above) with proc sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Title-inside-the-graph-and-not-above-with-proc-sgplot/m-p/360444#M12567</link>
      <description>&lt;P&gt;&amp;nbsp;Dear all,&lt;/P&gt;&lt;P&gt;I create some graphs in png that I put later in ods rtf. I would like to have the title inside the graph because i have sometimes 3 or 4 graphs on same page but i did not succeed til now..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please find my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ODS GRAPHICS / RESET IMAGENAME = 'AdminMoy' IMAGEFMT =png&lt;BR /&gt;HEIGHT = 3.15 in WIDTH = 4.9 in;&lt;BR /&gt;ODS LISTING GPATH = '\\vcarapp010\Rapports\01-ETUDE PIVOT\Graphs' ;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc sgplot data=alldata /*noautolegend*/;&lt;BR /&gt;series x=nbDay y=pmd /legendlabel='Setting of right input pressure' LINEATTRS=(color=PAB pattern=solid);&lt;BR /&gt;series x=nbDay y=DP /legendlabel='Setting of avg. L/R admission P. ratio' LINEATTRS=(color=red pattern=solid);&lt;BR /&gt;xaxis label='days' /min=0;&lt;BR /&gt;yaxis interval=AUTO integer label='Pressure (mmHg)' VALUES= (0 to 8 by 1) GRID;&lt;BR /&gt;refline 0.0083 /axis=X label="switch in auto mode" lineattrs=(color=black) LABELATTRS=(Color=red Family=Arial Size=6 Style=Italic Weight=Bold); /*met une ligne de référence verticale pour un évenement*/&lt;BR /&gt;keylegend/ location=outside position=bottom down=2;&lt;BR /&gt;title1 "Patient: PA001FRLAE - EN001FRLAE";&lt;BR /&gt;title2 "Time trajectories post-implant for setting of right input pressure and avg. L/R admission P. ratio";&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;Please find enclosed image.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/13860iF00D8D79A2D43B09/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="AdminMoy1.png" title="AdminMoy1.png" /&gt;</description>
      <pubDate>Mon, 22 May 2017 14:17:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Title-inside-the-graph-and-not-above-with-proc-sgplot/m-p/360444#M12567</guid>
      <dc:creator>PSIOT</dc:creator>
      <dc:date>2017-05-22T14:17:43Z</dc:date>
    </item>
    <item>
      <title>Re: Title inside the graph (and not above) with proc sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Title-inside-the-graph-and-not-above-with-proc-sgplot/m-p/360446#M12568</link>
      <description>&lt;P&gt;Why not just create the RTF straight off an use:&lt;/P&gt;
&lt;PRE&gt;ods rtf file="..." bodytitle;

...

ods rtf close;
&lt;/PRE&gt;</description>
      <pubDate>Mon, 22 May 2017 14:23:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Title-inside-the-graph-and-not-above-with-proc-sgplot/m-p/360446#M12568</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-05-22T14:23:15Z</dc:date>
    </item>
    <item>
      <title>Re: Title inside the graph (and not above) with proc sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Title-inside-the-graph-and-not-above-with-proc-sgplot/m-p/360457#M12569</link>
      <description>&lt;P&gt;Because i manage also a content in doc file and do not support bodytitle in option of ods rtf.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;declaration of ods rtf:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ods rtf file='\\vcarapp010\Rapports\01-ETUDE PIVOT\Report\Hemodynamical Report_PA001FRLAE.doc' dpi=300 contents=yes toc_data ;&lt;BR /&gt;ods noproctitle;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I would like to have the title in png file.&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2017 14:46:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Title-inside-the-graph-and-not-above-with-proc-sgplot/m-p/360457#M12569</guid>
      <dc:creator>PSIOT</dc:creator>
      <dc:date>2017-05-22T14:46:48Z</dc:date>
    </item>
    <item>
      <title>Re: Title inside the graph (and not above) with proc sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Title-inside-the-graph-and-not-above-with-proc-sgplot/m-p/360461#M12570</link>
      <description>&lt;P&gt;In what environment are you running this code? Is it DMS (display manager), EG (Enterprise Guide), or SAS Studio?&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2017 15:01:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Title-inside-the-graph-and-not-above-with-proc-sgplot/m-p/360461#M12570</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2017-05-22T15:01:46Z</dc:date>
    </item>
    <item>
      <title>Re: Title inside the graph (and not above) with proc sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Title-inside-the-graph-and-not-above-with-proc-sgplot/m-p/360462#M12571</link>
      <description>&lt;P&gt;Entreprise guide&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2017 15:03:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Title-inside-the-graph-and-not-above-with-proc-sgplot/m-p/360462#M12571</guid>
      <dc:creator>PSIOT</dc:creator>
      <dc:date>2017-05-22T15:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: Title inside the graph (and not above) with proc sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Title-inside-the-graph-and-not-above-with-proc-sgplot/m-p/360472#M12573</link>
      <description>&lt;P&gt;Ok I have just find the solution on web:&lt;/P&gt;&lt;P&gt;need to put&amp;nbsp;&lt;/P&gt;&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token statement"&gt;ODS&lt;/SPAN&gt; &lt;SPAN class="token keyword"&gt;tagsets&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;sasreport13&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token keyword"&gt;ID&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;EGSR&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt; gtitle&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thank you all for support,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2017 15:36:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Title-inside-the-graph-and-not-above-with-proc-sgplot/m-p/360472#M12573</guid>
      <dc:creator>PSIOT</dc:creator>
      <dc:date>2017-05-22T15:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: Title inside the graph (and not above) with proc sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Title-inside-the-graph-and-not-above-with-proc-sgplot/m-p/360474#M12574</link>
      <description>&lt;P&gt;By default, EG sets NOGTITLE and NOGFOOTNOTE for the graph output, which might explain what you're seeing. To get titles and footnotes inside the graph in EG, do the following steps:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. Go to Tools-&amp;gt;Optoins&lt;/P&gt;
&lt;P&gt;2. In the left pane, under "Results", click on the "Graph" item&lt;/P&gt;
&lt;P&gt;3. In the right pane, clicl on the two check boxes to include titles and footnotes in the graph&lt;/P&gt;
&lt;P&gt;4. Re-run your test&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps!&lt;/P&gt;
&lt;P&gt;Dan&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2017 15:47:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Title-inside-the-graph-and-not-above-with-proc-sgplot/m-p/360474#M12574</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2017-05-22T15:47:44Z</dc:date>
    </item>
    <item>
      <title>Re: Title inside the graph (and not above) with proc sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Title-inside-the-graph-and-not-above-with-proc-sgplot/m-p/611545#M19223</link>
      <description>&lt;P&gt;Super! I struggled a day on footnotes to present inside the plot. the result came in a min after your reference. Thanks a lot Dan!&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2019 10:35:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Title-inside-the-graph-and-not-above-with-proc-sgplot/m-p/611545#M19223</guid>
      <dc:creator>sutradhaari</dc:creator>
      <dc:date>2019-12-13T10:35:37Z</dc:date>
    </item>
  </channel>
</rss>

