<?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: Getting Gplot ODS graphs in STP side by side in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Getting-Gplot-ODS-graphs-in-STP-side-by-side/m-p/209118#M7818</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, Thank you all. There are many ways and dead-ends here, and using ODS Layout, ods region as above is a good and easy way to create gridded graphs side-by-side..ODS tagsets.htmlpanel, sgpanel or controlling _webout is all cumbersume and not giving the same practical results here. There is a couple of good resources for ODS layout:&lt;/P&gt;&lt;P&gt; &lt;A _jive_internal="true" class="active_link" href="https://communities.sas.com/message/191928#191928"&gt;https://communities.sas.com/message/191928#191928&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.misug.org/uploads/8/1/9/1/8191072/cparker_ods_menu.pdf" title="http://www.misug.org/uploads/8/1/9/1/8191072/cparker_ods_menu.pdf"&gt;http://www.misug.org/uploads/8/1/9/1/8191072/cparker_ods_menu.pdf&lt;/A&gt; ( abit old, but explains it)&lt;/P&gt;&lt;P&gt;Tor Ove&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 May 2015 07:12:00 GMT</pubDate>
    <dc:creator>TorOveKilnes</dc:creator>
    <dc:date>2015-05-05T07:12:00Z</dc:date>
    <item>
      <title>Getting Gplot ODS graphs in STP side by side</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Getting-Gplot-ODS-graphs-in-STP-side-by-side/m-p/209115#M7815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi&lt;/P&gt;&lt;P&gt;I have tried to generate the gplot graphs as files and then the idea was to use a general HTML file that referenced the produced png Gplot graphs directly. But using STP, the STP output always adds a lot of general code and this could be used, but it places a &amp;lt;br&amp;gt; between each gplot graph being produced by the STP program. I wonder if any of you have made such a STP graph that just puts 2-4 gplot graphs side by side and NOT underneith each other, as the default result is. THe Gplot graphs is independent. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2015 18:24:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Getting-Gplot-ODS-graphs-in-STP-side-by-side/m-p/209115#M7815</guid>
      <dc:creator>TorOveKilnes</dc:creator>
      <dc:date>2015-05-04T18:24:30Z</dc:date>
    </item>
    <item>
      <title>Re: Getting Gplot ODS graphs in STP side by side</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Getting-Gplot-ODS-graphs-in-STP-side-by-side/m-p/209116#M7816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use ODS LAYOUT to have several graphs side by side, you need to know how many "columns" you are going to have, so you can adjust it accordingly. See code sample below. Before each graph or table you need an ODS REGION statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;ods&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;layout&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;gridded&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; columns=&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;2&lt;/STRONG&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;ods&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;region&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;proc&lt;/STRONG&gt; &lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;gchart&lt;/STRONG&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;data&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=sashelp.cars;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;vbar&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; type;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;run&lt;/STRONG&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;quit&lt;/STRONG&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;ods&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;region&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;proc&lt;/STRONG&gt; &lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;gchart&lt;/STRONG&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;data&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=sashelp.cars;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;vbar&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; origin;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;run&lt;/STRONG&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;quit&lt;/STRONG&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;ods&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;layout&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;end&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2015 20:54:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Getting-Gplot-ODS-graphs-in-STP-side-by-side/m-p/209116#M7816</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2015-05-04T20:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: Getting Gplot ODS graphs in STP side by side</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Getting-Gplot-ODS-graphs-in-STP-side-by-side/m-p/209117#M7817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; Also, remember to choose your destination of choice carefully in your SP, ODS LAYOUT may not be supported by all destinations. Refer to the doc to double check which destinations supports the layout you want.&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2015 22:58:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Getting-Gplot-ODS-graphs-in-STP-side-by-side/m-p/209117#M7817</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2015-05-04T22:58:08Z</dc:date>
    </item>
    <item>
      <title>Re: Getting Gplot ODS graphs in STP side by side</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Getting-Gplot-ODS-graphs-in-STP-side-by-side/m-p/209118#M7818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, Thank you all. There are many ways and dead-ends here, and using ODS Layout, ods region as above is a good and easy way to create gridded graphs side-by-side..ODS tagsets.htmlpanel, sgpanel or controlling _webout is all cumbersume and not giving the same practical results here. There is a couple of good resources for ODS layout:&lt;/P&gt;&lt;P&gt; &lt;A _jive_internal="true" class="active_link" href="https://communities.sas.com/message/191928#191928"&gt;https://communities.sas.com/message/191928#191928&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.misug.org/uploads/8/1/9/1/8191072/cparker_ods_menu.pdf" title="http://www.misug.org/uploads/8/1/9/1/8191072/cparker_ods_menu.pdf"&gt;http://www.misug.org/uploads/8/1/9/1/8191072/cparker_ods_menu.pdf&lt;/A&gt; ( abit old, but explains it)&lt;/P&gt;&lt;P&gt;Tor Ove&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2015 07:12:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Getting-Gplot-ODS-graphs-in-STP-side-by-side/m-p/209118#M7818</guid>
      <dc:creator>TorOveKilnes</dc:creator>
      <dc:date>2015-05-05T07:12:00Z</dc:date>
    </item>
    <item>
      <title>Re: Getting Gplot ODS graphs in STP side by side</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Getting-Gplot-ODS-graphs-in-STP-side-by-side/m-p/209119#M7819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, thanks all&lt;/P&gt;&lt;P&gt;The ODS Layout with ODS Region is the best solution to this. Using variations like tagset.htmlpanel, sgplot or controlling _webout does not lead to a simple (especially for matrixes like 2x2, 4x1) and generic solution like ODS layout does. Some useful links:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.misug.org/uploads/8/1/9/1/8191072/cparker_ods_menu.pdf" title="http://www.misug.org/uploads/8/1/9/1/8191072/cparker_ods_menu.pdf"&gt;http://www.misug.org/uploads/8/1/9/1/8191072/cparker_ods_menu.pdf&lt;/A&gt; (old but explains how ODS layout works)&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://communities.sas.com/message/191928"&gt;https://communities.sas.com/message/191928&lt;/A&gt; (Different thread here).&lt;BR /&gt;Tor Ove&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2015 10:14:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Getting-Gplot-ODS-graphs-in-STP-side-by-side/m-p/209119#M7819</guid>
      <dc:creator>TorOveKilnes</dc:creator>
      <dc:date>2015-05-05T10:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: Getting Gplot ODS graphs in STP side by side</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Getting-Gplot-ODS-graphs-in-STP-side-by-side/m-p/209120#M7820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. I figured out that for example ActiveX and Java device not is supported, while ActXImg is. It there a way that you know of that can put such graphs out with ActiveX/Java device, in order to get the "hoover over", zoom etc, functionality?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2015 09:07:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Getting-Gplot-ODS-graphs-in-STP-side-by-side/m-p/209120#M7820</guid>
      <dc:creator>TorOve</dc:creator>
      <dc:date>2015-05-07T09:07:14Z</dc:date>
    </item>
  </channel>
</rss>

