<?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: hyperlinks to other graphs within same html output in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/hyperlinks-to-other-graphs-within-same-html-output/m-p/26188#M769</link>
    <description>Hi:&lt;BR /&gt;
  Have you looked at FRAME=, BODY= and CONTENTS= options with ODS HTML -- that would make links that pointed to ALL the output created within 1 ODS HTML step. Something similar to this:&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods html path='&lt;DIR-PATH&gt;' (url=none)&lt;BR /&gt;
         body='body.html'&lt;BR /&gt;
         contents='toc.html'&lt;BR /&gt;
         frame='frm.html' style=sasweb;&lt;BR /&gt;
 ... one step or more than one step ...&lt;BR /&gt;
  &lt;BR /&gt;
ods html close;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
   &lt;BR /&gt;
Then, if you open the FRM.HTML file, you should see links to all the output that was created, so whether you had 1 step or 20 steps in your ODS HTML "sandwich" there would be a navigation link on the left side that would contain a clickable link to a named anchor that would display on the right-hand side of the frame when you clicked on the link. Even if you use the NEWFILE= option, the FRAME= and CONTENTS= links will contain the correct pointers.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia&lt;/DIR-PATH&gt;</description>
    <pubDate>Tue, 02 Nov 2010 04:09:48 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2010-11-02T04:09:48Z</dc:date>
    <item>
      <title>hyperlinks to other graphs within same html output</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/hyperlinks-to-other-graphs-within-same-html-output/m-p/26187#M768</link>
      <description>Hi all,&lt;BR /&gt;
&lt;BR /&gt;
I have about 15 graphs in one html file. What I want to do is have a list of names of those graphs and be able to instantly scroll down to those graphs. Rob allison had done something similar with linking to other websites:&lt;BR /&gt;
&lt;A href="http://robslink.com/SAS/democd23/overlib.htm" target="_blank"&gt;http://robslink.com/SAS/democd23/overlib.htm&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://robslink.com/SAS/democd23/overlib_info.htm" target="_blank"&gt;http://robslink.com/SAS/democd23/overlib_info.htm&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
but what about linking to graphs within the same file?&lt;BR /&gt;
&lt;BR /&gt;
Thanks in advance,&lt;BR /&gt;
Sachin</description>
      <pubDate>Mon, 01 Nov 2010 23:14:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/hyperlinks-to-other-graphs-within-same-html-output/m-p/26187#M768</guid>
      <dc:creator>SachinRuk</dc:creator>
      <dc:date>2010-11-01T23:14:15Z</dc:date>
    </item>
    <item>
      <title>Re: hyperlinks to other graphs within same html output</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/hyperlinks-to-other-graphs-within-same-html-output/m-p/26188#M769</link>
      <description>Hi:&lt;BR /&gt;
  Have you looked at FRAME=, BODY= and CONTENTS= options with ODS HTML -- that would make links that pointed to ALL the output created within 1 ODS HTML step. Something similar to this:&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods html path='&lt;DIR-PATH&gt;' (url=none)&lt;BR /&gt;
         body='body.html'&lt;BR /&gt;
         contents='toc.html'&lt;BR /&gt;
         frame='frm.html' style=sasweb;&lt;BR /&gt;
 ... one step or more than one step ...&lt;BR /&gt;
  &lt;BR /&gt;
ods html close;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
   &lt;BR /&gt;
Then, if you open the FRM.HTML file, you should see links to all the output that was created, so whether you had 1 step or 20 steps in your ODS HTML "sandwich" there would be a navigation link on the left side that would contain a clickable link to a named anchor that would display on the right-hand side of the frame when you clicked on the link. Even if you use the NEWFILE= option, the FRAME= and CONTENTS= links will contain the correct pointers.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia&lt;/DIR-PATH&gt;</description>
      <pubDate>Tue, 02 Nov 2010 04:09:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/hyperlinks-to-other-graphs-within-same-html-output/m-p/26188#M769</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-11-02T04:09:48Z</dc:date>
    </item>
    <item>
      <title>Re: hyperlinks to other graphs within same html output</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/hyperlinks-to-other-graphs-within-same-html-output/m-p/26189#M770</link>
      <description>To link to graphs in the same html file/webpage, you can use html 'anchors'.&lt;BR /&gt;
&lt;BR /&gt;
Here is an example...&lt;BR /&gt;
&lt;BR /&gt;
   &lt;A href="http://robslink.com/SAS/democd23/anchor.htm" target="_blank"&gt;http://robslink.com/SAS/democd23/anchor.htm&lt;/A&gt;&lt;BR /&gt;
   &lt;A href="http://robslink.com/SAS/democd23/anchor_info.htm" target="_blank"&gt;http://robslink.com/SAS/democd23/anchor_info.htm&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
In this case, each bar in the bar chart drills-down to an html anchor for that state-map lower in the same webpage.  Similarly, you could use a table/list instead of a bar chart.</description>
      <pubDate>Tue, 02 Nov 2010 12:26:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/hyperlinks-to-other-graphs-within-same-html-output/m-p/26189#M770</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2010-11-02T12:26:07Z</dc:date>
    </item>
  </channel>
</rss>

