<?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: control procedure output area in graphs in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/control-procedure-output-area-in-graphs/m-p/178512#M6565</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ODS Graphics setting do not apply to the SAS/GRAPH procedures like GCHART or GPLOT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Apr 2014 12:53:11 GMT</pubDate>
    <dc:creator>Jay54</dc:creator>
    <dc:date>2014-04-14T12:53:11Z</dc:date>
    <item>
      <title>control procedure output area in graphs</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/control-procedure-output-area-in-graphs/m-p/178509#M6562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to decrease the procedure output area in graphs, so that i can get more area for the footnote,legend below the x axis. Changing the HSIZE and VSIZE is changing the entire graphic output area, however i wish to control the procedure output area alone. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions would be appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2014 03:30:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/control-procedure-output-area-in-graphs/m-p/178509#M6562</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2014-04-14T03:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: control procedure output area in graphs</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/control-procedure-output-area-in-graphs/m-p/178510#M6563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you're using traditional SAS/Graph procedures (such as gplot, gchart, gmap), and using gtitles &amp;amp; gfootnotes (titles &amp;amp; footnotes as part of the graph - which excludes devices such as java &amp;amp; activex), then you can add space after/below the footnote by using the ls= (line spacing) option, such as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;footnote1 ls=3.0 "Footnote with more spacing";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to add space before the footnote, then you can add a blank footnote statement, with a large height (you can specify it in percent, or points, or whatever is convenient), such as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;footnote1 height=10pct " ";&lt;/P&gt;&lt;P&gt;footnote2 "there is a lot of space before this footnote";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once you've created the desired blank space, you can use the offset= option in the legend statement to move the legend into that space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's a quick/simple example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;legend1 mode=share position=(bottom left) offset=(20,-5) cborder=black;&lt;/P&gt;&lt;P&gt;footnote1 height=10pct " ";&lt;BR /&gt;footnote2 height=2.5pct ls=2.5 "here is my footnote";&lt;/P&gt;&lt;P&gt;proc gplot data=sashelp.class;&lt;BR /&gt;plot height*weight=sex / legend=legend1;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="5967" alt="foo.png" class="jive-image-thumbnail jive-image" height="518" src="https://communities.sas.com/legacyfs/online/5967_foo.png" width="673" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2014 12:15:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/control-procedure-output-area-in-graphs/m-p/178510#M6563</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2014-04-14T12:15:42Z</dc:date>
    </item>
    <item>
      <title>Re: control procedure output area in graphs</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/control-procedure-output-area-in-graphs/m-p/178511#M6564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perhaps:&lt;/P&gt;&lt;P&gt;ods graphics / reset=all height=13cm width=22cm;&lt;/P&gt;&lt;P&gt;Adjusting the height and width should adjust the graphic, so if your titles/footnotes are outside that then they can be bigger.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2014 12:19:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/control-procedure-output-area-in-graphs/m-p/178511#M6564</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2014-04-14T12:19:51Z</dc:date>
    </item>
    <item>
      <title>Re: control procedure output area in graphs</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/control-procedure-output-area-in-graphs/m-p/178512#M6565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ODS Graphics setting do not apply to the SAS/GRAPH procedures like GCHART or GPLOT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2014 12:53:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/control-procedure-output-area-in-graphs/m-p/178512#M6565</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2014-04-14T12:53:11Z</dc:date>
    </item>
  </channel>
</rss>

