<?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: How to make the Drill-Down Graph work in PDF file? in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116742#M4433</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you need to modify the code if you are going to email the PDF file to someone who doesn’t have sas? Are the links still clickable?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Oct 2013 19:21:59 GMT</pubDate>
    <dc:creator>Linlin</dc:creator>
    <dc:date>2013-10-18T19:21:59Z</dc:date>
    <item>
      <title>How to make the Drill-Down Graph work in PDF file?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116738#M4429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts, I copied the below example from SAS/GRAPG 9.3 reference. Why “Click a bar for details” does not work in file ‘salesrpt_single_page.pdf’ (not through SAS) ?&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Example: Writing a Drill-Down Graph to a PDF File */&lt;/P&gt;&lt;P&gt;/* Define the PDF output filename. */&lt;/P&gt;&lt;P&gt;filename outp "salesrpt_single_page.pdf";&lt;/P&gt;&lt;P&gt;/* Define the ODS output path. */&lt;/P&gt;&lt;P&gt;filename odsout ".";&lt;/P&gt;&lt;P&gt;/* Define the base URL for the links. */&lt;/P&gt;&lt;P&gt;%let baseurl=.;&lt;/P&gt;&lt;P&gt;/* Create the data set REGSALES. */&lt;/P&gt;&lt;P&gt;data regsales;&lt;/P&gt;&lt;P&gt;length Region State $ 8 Location $ 15;&lt;/P&gt;&lt;P&gt;format Sales dollar8.;&lt;/P&gt;&lt;P&gt;input State Region Location Sales;&lt;/P&gt;&lt;P&gt;datalines;&lt;/P&gt;&lt;P&gt;IL Central EVANSTON 18038&lt;/P&gt;&lt;P&gt;IL Central CHICAGO 14322&lt;/P&gt;&lt;P&gt;IL Central AURORA 10768&lt;/P&gt;&lt;P&gt;OH Central COLUMBUS 13611&lt;/P&gt;&lt;P&gt;OH Central DAYTON 11084&lt;/P&gt;&lt;P&gt;OH Central CINCINNATI 19534&lt;/P&gt;&lt;P&gt;FL South MIAMI 14541&lt;/P&gt;&lt;P&gt;FL South TAMPA 16733&lt;/P&gt;&lt;P&gt;NC South RALEIGH 19022&lt;/P&gt;&lt;P&gt;NC South WILMINGTON 12876&lt;/P&gt;&lt;P&gt;NC South CHARLOTTE 13498&lt;/P&gt;&lt;P&gt;CA West SANTA-CRUZ 13636&lt;/P&gt;&lt;P&gt;CA West LONG-BEACH 15687&lt;/P&gt;&lt;P&gt;WA West SEATTLE 18988&lt;/P&gt;&lt;P&gt;WA West TACOMA 14523&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;/* Add the link information to the data. */&lt;/P&gt;&lt;P&gt;data regsales;&lt;/P&gt;&lt;P&gt;set regsales;&lt;/P&gt;&lt;P&gt;length RPTR $ 80;&lt;/P&gt;&lt;P&gt;if (Region="Central") then RPTR="&amp;amp;baseurl./Central.htm";&lt;/P&gt;&lt;P&gt;else if (Region="South") then RPTR="&amp;amp;baseurl./South.htm";&lt;/P&gt;&lt;P&gt;else if (Region="West") then RPTR="&amp;amp;baseurl./West.htm";&lt;/P&gt;&lt;P&gt;else RPTR=.;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;/* Close the HTML destination and set the graphics options. */&lt;/P&gt;&lt;P&gt;ods html close;&lt;/P&gt;&lt;P&gt;goptions reset=all device=png border xpixels=520 ypixels=450;&lt;/P&gt;&lt;P&gt;/* Clear titles and footnotes */&lt;/P&gt;&lt;P&gt;title;&lt;/P&gt;&lt;P&gt;footnote;&lt;/P&gt;&lt;P&gt;/* Create a macro to use for generating the region charts. */&lt;/P&gt;&lt;P&gt;%macro do_region(region);&lt;/P&gt;&lt;P&gt;/* Open ODS HTML destination. Use the region name as the filename */&lt;/P&gt;&lt;P&gt;ods html file="&amp;amp;region..htm" path=odsout style=listing;&lt;/P&gt;&lt;P&gt;/* Set the axis label and title */&lt;/P&gt;&lt;P&gt;axis1 label=("Total Sales");&lt;/P&gt;&lt;P&gt;title1 "Total Sales in &amp;amp;region Region";&lt;/P&gt;&lt;P&gt;/* Create the chart */&lt;/P&gt;&lt;P&gt;proc gchart data=regsales;&lt;/P&gt;&lt;P&gt;vbar3d state / sumvar=sales outside=sum name="region"&lt;/P&gt;&lt;P&gt;raxis=axis1 patternid=midpoint&lt;/P&gt;&lt;P&gt;description="Total sales for &amp;amp;region region"&lt;/P&gt;&lt;P&gt;shape=cylinder width=15;&lt;/P&gt;&lt;P&gt;where region="&amp;amp;region";&lt;/P&gt;&lt;P&gt;run; quit;&lt;/P&gt;&lt;P&gt;/* Close the ODS HTML destination */&lt;/P&gt;&lt;P&gt;ods html close;&lt;/P&gt;&lt;P&gt;%mend do_region;&lt;/P&gt;&lt;P&gt;/* Call the %DO_REGION macro for Central, South, and West. */&lt;/P&gt;&lt;P&gt;%do_region(Central);&lt;/P&gt;&lt;P&gt;%do_region(South);&lt;/P&gt;&lt;P&gt;%do_region(West);&lt;/P&gt;&lt;P&gt;/* Open the PDF destination and set the style. */&lt;/P&gt;&lt;P&gt;ods pdf style=statistical;&lt;/P&gt;&lt;P&gt;/* Set the graphics options. You must use the PDF or PDFA device. */&lt;/P&gt;&lt;P&gt;goptions reset=all gsfname=outp device=pdf border&lt;/P&gt;&lt;P&gt;vorigin=2.5in horigin=0.6in vsize=550pt hsize=520pt;&lt;/P&gt;&lt;P&gt;/* Generate the Company Sales report PDF document. */&lt;/P&gt;&lt;P&gt;title1 "Company Sales Report";&lt;/P&gt;&lt;P&gt;title2 "Sales by Region";&lt;/P&gt;&lt;P&gt;footnote1 "(Click a bar for details.)";&lt;/P&gt;&lt;P&gt;axis1 label=("Total Sales") reflabel=(j=r "Target ");&lt;/P&gt;&lt;P&gt;proc gchart data=regsales;&lt;/P&gt;&lt;P&gt;vbar3d region /&lt;/P&gt;&lt;P&gt;cref=red lref=3 ref=62000 /* Draw a reference line at the */&lt;/P&gt;&lt;P&gt;/* sales target. */&lt;/P&gt;&lt;P&gt;sumvar=sales outside=sum raxis=axis1&lt;/P&gt;&lt;P&gt;shape=cylinder width=15 patternid=midpoint&lt;/P&gt;&lt;P&gt;description="Company sales report"&lt;/P&gt;&lt;P&gt;url=RPTR; /* Specify RPT as the URL variable in the data. */&lt;/P&gt;&lt;P&gt;run; quit;&lt;/P&gt;&lt;P&gt;/* Close the PDF destination and open HTML */&lt;/P&gt;&lt;P&gt;ods pdf close;&lt;/P&gt;&lt;P&gt;ods html;&lt;/P&gt;&lt;P&gt;/* Reset graphics options, titles, and footnotes */&lt;/P&gt;&lt;P&gt;goptions reset=all;&lt;/P&gt;&lt;P&gt;title;&lt;/P&gt;&lt;P&gt;footnote;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 18:32:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116738#M4429</guid>
      <dc:creator>Linlin</dc:creator>
      <dc:date>2013-10-18T18:32:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to make the Drill-Down Graph work in PDF file?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116739#M4430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure what you meant by "(not in SAS)",&amp;nbsp; I just ran your code and the resulting pdf file had clickable links.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 18:47:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116739#M4430</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2013-10-18T18:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to make the Drill-Down Graph work in PDF file?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116740#M4431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would you please try to find the PDF file on your omputer then click from there?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 19:04:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116740#M4431</guid>
      <dc:creator>Linlin</dc:creator>
      <dc:date>2013-10-18T19:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to make the Drill-Down Graph work in PDF file?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116741#M4432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The output file created was called sasprt (just ran the code above) which seems a bit weird but the links work fine. My only issue was I did get a warning in my browser about links activex content being blocked, so your browser settings could be something to look into.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EDIT: The report you mention does exist, just not the first one I saw. The links in that one DO NOT work. The links in the other one do...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 19:11:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116741#M4432</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2013-10-18T19:11:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to make the Drill-Down Graph work in PDF file?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116742#M4433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you need to modify the code if you are going to email the PDF file to someone who doesn’t have sas? Are the links still clickable?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 19:21:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116742#M4433</guid>
      <dc:creator>Linlin</dc:creator>
      <dc:date>2013-10-18T19:21:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to make the Drill-Down Graph work in PDF file?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116743#M4434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Art,&lt;/P&gt;&lt;P&gt;Please email me your PDF file with clickable links. Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 19:23:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116743#M4434</guid>
      <dc:creator>Linlin</dc:creator>
      <dc:date>2013-10-18T19:23:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to make the Drill-Down Graph work in PDF file?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116744#M4435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which version of SAS are you using? &lt;/P&gt;&lt;P&gt;(drilldown in pdf is a fairly new feature - I believe it's only available in SAS 9.3 and higher)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And how are you viewing the pdf?&lt;/P&gt;&lt;P&gt;(for example, I'm viewing it in the IE browser, on a Windows computer)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 19:25:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116744#M4435</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2013-10-18T19:25:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to make the Drill-Down Graph work in PDF file?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116745#M4436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The links are to pages outside the document, separate html/png files, which would need to be emailed as well.&lt;/P&gt;&lt;P&gt;A person with SAS can open the file, but personally, I wouldn't go down this route because its difficult to package and help people when something is broken. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 19:26:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116745#M4436</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2013-10-18T19:26:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to make the Drill-Down Graph work in PDF file?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116746#M4437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is some pdf output from one of my SAS jobs, with drilldowns, if you want to try viewing that:&lt;/P&gt;&lt;P&gt;&lt;A href="http://robslink.com/SAS/democd23/pdf_drill.pdf" title="http://robslink.com/SAS/democd23/pdf_drill.pdf"&gt;http://robslink.com/SAS/democd23/pdf_drill.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And here is the SAS code I used, in case that might help:&lt;/P&gt;&lt;P&gt;&lt;A href="http://robslink.com/SAS/democd23/pdf_drill_info.htm" title="http://robslink.com/SAS/democd23/pdf_drill_info.htm"&gt;http://robslink.com/SAS/democd23/pdf_drill_info.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 19:28:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116746#M4437</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2013-10-18T19:28:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to make the Drill-Down Graph work in PDF file?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116747#M4438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have PC sas9.3. I just double click the PDF file. Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 19:31:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116747#M4438</guid>
      <dc:creator>Linlin</dc:creator>
      <dc:date>2013-10-18T19:31:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to make the Drill-Down Graph work in PDF file?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116748#M4439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With my pdf, when I double-click the pdf in Windows Explorer, it comes up in Adobe Reader (is that what your PC is configured to use? - this could vary from PC to PC), and when I click the bars there the drilldowns work - it asks me if I want to allow or block, and when I allow, it pops up an IE browser window with the drilldown page (IE is my default web browser, but this could also be different on your PC).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I view the pdf in IE (such as the url/link I posted a few minutes ago), then when I click the bars it goes to the drilldown url directly in that IE browser.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 19:39:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116748#M4439</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2013-10-18T19:39:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to make the Drill-Down Graph work in PDF file?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116749#M4440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your final document will the links be to external websites or to other graphics/info?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 19:54:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116749#M4440</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2013-10-18T19:54:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to make the Drill-Down Graph work in PDF file?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116750#M4441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Reeza! I am not sure at this point, I need more information. Have a great weekend! - Linlin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 19:59:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116750#M4441</guid>
      <dc:creator>Linlin</dc:creator>
      <dc:date>2013-10-18T19:59:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to make the Drill-Down Graph work in PDF file?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116751#M4442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A __default_attr="3068" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt; &lt;A __default_attr="77982" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt; and other experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you happen to know anyway to create a PDF (or HTML for that matter) that supports 2+ level of click through? For example in your case, how do you make the HTM files click-able to get to the more granular level of data (if there are)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Haikuo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Oct 2013 13:13:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116751#M4442</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2013-10-21T13:13:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to make the Drill-Down Graph work in PDF file?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116752#M4443</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry Haikuo:smileysilly:, I don't know. Art, Robert, or Reeza may know.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Oct 2013 17:52:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116752#M4443</guid>
      <dc:creator>Linlin</dc:creator>
      <dc:date>2013-10-21T17:52:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to make the Drill-Down Graph work in PDF file?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116753#M4444</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Basically (as I see it) the number of levels of click-through (drill down) are unlimited. Each level of drill down would be another set of SAS graphs that you've created, and each set of graphs could have its own drill down. With SAS/Graph, there's nothing really built-in/automated that does it -- you just have to go through and create each level.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The "tricky" part is that you have to know the urls (relative, or absolute) to code in as your drill down at each level.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Oct 2013 17:58:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116753#M4444</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2013-10-21T17:58:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to make the Drill-Down Graph work in PDF file?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116754#M4445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, &lt;A __default_attr="77982" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt;, I was expecting something more dynamic. Something like OLAP Cube, when doing drill-down in the data table, the associated chart will be updated real-time. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Oct 2013 18:22:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116754#M4445</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2013-10-21T18:22:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to make the Drill-Down Graph work in PDF file?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116755#M4446</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want the SAS/Graph graphs (and drill-downs) in real-time, then you'll have to run the graphs using SAS/Intrnet (or Stored Processes).&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Oct 2013 18:25:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116755#M4446</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2013-10-21T18:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to make the Drill-Down Graph work in PDF file?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116756#M4447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Stored Processes will be the direction I am heading to. Thank you! Robert.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Oct 2013 18:37:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-the-Drill-Down-Graph-work-in-PDF-file/m-p/116756#M4447</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2013-10-21T18:37:27Z</dc:date>
    </item>
  </channel>
</rss>

