goodoldshoes Report post Posted May 6, 2012 I use FusionCharts and Sencha Touch 2 in my program, drilldown works fine in PC, but it does not work in iPad 1. If I use FusionCharts only, it works fine (//Ext.setup({}) 2. If I use FusionCharts and Sencha Touch 2, it does not work (Ext.setup({}) <script> //Ext.setup({}); var cc = "<chart caption='Assets' xAxisName='Month' yAxisName='Sum' numberPrefix='$' animation='0'>"; cc = cc + "<set label='January' value='14400' color='001EEE' link='JavaScript:alert(1);'/>"; cc = cc + "<set label='February' value='19600' color='001EEE'/>"; cc = cc + "<set label='March' value='24000' color='001EEE'/>"; cc = cc + "<set label='April' value='15700' color='001EEE'/>"; cc = cc + "<set label='May' value='18700' color='001EEE'/>"; cc = cc + "</chart>"; FusionCharts.setCurrentRenderer('javascript'); var myChart = new FusionCharts( "FusionCharts/Column3D.swf", "myChartId", "80%", "80%", "0", "1" ); myChart.setDataXML(cc); myChart.render("chartContainer"); </script> Share this post Link to post Share on other sites
Guest Sashibhusan Report post Posted May 7, 2012 Hi, Thank you for the post. With regards to your issue, could you please enable the FusionCharts JavaScript DebugMode and send the debugMode output information to better investigate your issue? Ref. Code: FusionCharts.debugMode.enabled( function() { console.log(arguments); } , 'verbose'); Also please note that "setDataXML()" method is a deprecated one. So use "setXMLData();" instead, for providing XML data to the chart. Awaiting your response! Share this post Link to post Share on other sites