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>