alm

Members
  • Content count

    2
  • Joined

  • Last visited

About alm

  • Rank
    Forum Newbie
  1. I tried this but it didn't make any difference. I see the same behaviour on my local development machine and the webserver. When a data point is clicked and I'm debugging in Visual Studio, I see a JScript script block start up: try { document.getElementById("visits_duration_chart").SetReturnValue(__flash__toXML(__fusioncharts_event(({type:"drawcomplete",sender:"visits_duration_chart"}),({drawCount:1,width:799,height:300}))) ); } catch (e) { document.getElementById("visits_duration_chart").SetReturnValue("<undefined/>"); } But there's no output on the web page. Andrew
  2. I'm using FusionCharts v3 Evaluation version. I am attempting to build a Combination 2D Dual Y Axis chart with drilldown to the same type of chart. Top level chart renders no problem, and the cursor changes to a hand when over a data point, but nothing happens when it's clicked. I have tried removing all UpdatePanels etc. If I set the link to a web address (http://blah.com) the page correctly shows when the data point is clicked. If I set the link to 'newchart-xml-blah' nothing happens. What am I missing? Andrew Here's my html/javascript: <div id="chart_div"></div> <script type="text/javascript"> var chart = new FusionCharts("../lib/MSCombiDY2D.swf", "chart", "800", "300", "0", "1"); chart.setDataURL("../chart_req.aspx"); chart.render("chart_div"); </script> Here's the XML (edited for brevity): <chart caption='Visits' xAxisName='Time Period' PYAxisName='Visits' SYAxisName='Duration'> <styles> <definition> <style name='CanvasAnim' type='animation' param='_xScale' start='0' duration='1' /> </definition> <application> <apply toObject='Canvas' styles='CanvasAnim' /> </application> </styles> <categories> <category label='Jul' /> </categories> <dataset seriesName='Visits' parentYAxis='P'> <set value='10' link='newchart-xml-daily0' /> </dataset> <dataset seriesName='Duration' parentYAxis='S'> <set value='5' link='newchart-xml-daily0' /> </dataset> <linkeddata id='daily0'> <chart caption='Visits' xAxisName='Time Period' PYAxisName='Visits' SYAxisName='Duration'> <categories> <category label='1-Jul' /> </categories> <dataset seriesName='Visits' parentYAxis='P'> <set value='0' /> </dataset> <dataset seriesName='Duration' parentYAxis='S'> <set value='0' /> </dataset> </chart> </linkeddata> </chart>