<?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: Two kinds of graphs, shared/common axis? in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Two-kinds-of-graphs-shared-common-axis/m-p/145122#M5488</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you can build a GTL template with two graphs and common X axis.&amp;nbsp; There are many examples, and you can customize to your needs.&amp;nbsp; Here are a couple of examples from the support page:&lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="http://support.sas.com/kb/35/171.html" title="http://support.sas.com/kb/35/171.html"&gt;35171 - Histogram with Normal and Kernel Density Curves&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/kb/35/040.html" title="http://support.sas.com/kb/35/040.html"&gt;35040 - Monthly Stock Price and Volume Graph&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 15 Mar 2014 20:30:24 GMT</pubDate>
    <dc:creator>Jay54</dc:creator>
    <dc:date>2014-03-15T20:30:24Z</dc:date>
    <item>
      <title>Two kinds of graphs, shared/common axis?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Two-kinds-of-graphs-shared-common-axis/m-p/145121#M5487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can SGPANEL or SGRENDER be used to put two graphs on a page that _share_ an axis?&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's what I would like to do: I have a variable which changes during the day, different values for each category, so I am doing an area chart to show that.&amp;nbsp; The variations depend upon different processes which are happening, for which I have the start and end times.&amp;nbsp;&amp;nbsp; I would like to share the horizontal axis which will be 24 hours with a tick each quarter hour,&amp;nbsp; on top I want the area chart, below I want to do a horizontal high-low chart with the categories on the vertical axis being the process identifiers, and the bars representing the duration of the process.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Mar 2014 20:21:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Two-kinds-of-graphs-shared-common-axis/m-p/145121#M5487</guid>
      <dc:creator>TimH</dc:creator>
      <dc:date>2014-03-15T20:21:17Z</dc:date>
    </item>
    <item>
      <title>Re: Two kinds of graphs, shared/common axis?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Two-kinds-of-graphs-shared-common-axis/m-p/145122#M5488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you can build a GTL template with two graphs and common X axis.&amp;nbsp; There are many examples, and you can customize to your needs.&amp;nbsp; Here are a couple of examples from the support page:&lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="http://support.sas.com/kb/35/171.html" title="http://support.sas.com/kb/35/171.html"&gt;35171 - Histogram with Normal and Kernel Density Curves&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/kb/35/040.html" title="http://support.sas.com/kb/35/040.html"&gt;35040 - Monthly Stock Price and Volume Graph&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Mar 2014 20:30:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Two-kinds-of-graphs-shared-common-axis/m-p/145122#M5488</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2014-03-15T20:30:24Z</dc:date>
    </item>
    <item>
      <title>Re: Two kinds of graphs, shared/common axis?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Two-kinds-of-graphs-shared-common-axis/m-p/145123#M5489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Those are helpful, and I will do more reading about templates but not quite what I was asking.&amp;nbsp; The examples show multiple charts from on dataset.&amp;nbsp;&amp;nbsp; I actually have two datasets;&amp;nbsp; one for the upper chart - the dataset containing the variable I am doing the area chart for -&amp;nbsp; and one for the lower chart - the start/stop time of the processes.&amp;nbsp; Since the variable which changes during the day is measured at regular intervals,&amp;nbsp; and the start/stop times of the processes do not conform to those intervals, I do not think I can merge the two datasets .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 13:19:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Two-kinds-of-graphs-shared-common-axis/m-p/145123#M5489</guid>
      <dc:creator>TimH</dc:creator>
      <dc:date>2014-03-17T13:19:02Z</dc:date>
    </item>
    <item>
      <title>Re: Two kinds of graphs, shared/common axis?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Two-kinds-of-graphs-shared-common-axis/m-p/145124#M5490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The procedure only supports one data set per graph.&amp;nbsp; So, you have to merge the data.&amp;nbsp; It is OK to have two columns (X &amp;amp; Y) for the upper graph and two different columns (X2, Y2) for the lower.&amp;nbsp; As long as X and X2 are of the same type, the axes can be merged by the graph.&amp;nbsp; We do that with the survival plot.&amp;nbsp; The survival graph is with x=Time and the lower at risk table graph is using x=TAtTisk.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 13:40:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Two-kinds-of-graphs-shared-common-axis/m-p/145124#M5490</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2014-03-17T13:40:10Z</dc:date>
    </item>
  </channel>
</rss>

