FCXTUser Report post Posted February 1, 2012 I am using the HTML below to test the display of fusioncharts on the Ipad via a SSL VPN gateway to a corporate intranet site. I am able to view the chart on my PC. However, on the IPAD I get a blank screen. Are there any solution to this? Thank you <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title id="page-title">Brokerage</title> <link rel="stylesheet" type="text/css" href="/ext-4/resources/css/ext-all.css"> <script type="text/javascript" src="//ke32/FusionChartsXT/FusionCharts.js"></script> </head> <body> <div id='ChtMthTrend'></div> <script> FusionCharts.setCurrentRenderer('javascript'); var StackColumnChart = new FusionCharts("../FusionChartsXT/Column3D.swf", "ChtMthTrendDiv", 400, 300, "0", "0"); StackColumnChart.setXMLUrl("data/Mthly.xml"); StackColumnChart.render("ChtMthTrend"); </script> </body> </html> Share this post Link to post Share on other sites
Guest Angshu Report post Posted February 1, 2012 Hi, Welcome to FusionCharts Forum! Could you please download the latest vresion of FusionCharts i.e FusionCharts XT Service Release 2 from: http://www.fusioncharts.com/download/trials/ and see if this helps? Looking forward to your feedback. Share this post Link to post Share on other sites
FCXTUser Report post Posted February 1, 2012 Hi, Welcome to FusionCharts Forum! Could you please download the latest vresion of FusionCharts i.e FusionCharts XT Service Release 2 from: http://www.fusioncha...ownload/trials/ and see if this helps? Looking forward to your feedback. Hi. Did that but am still getting a blank screen. Share this post Link to post Share on other sites
Guest Angshu Report post Posted February 1, 2012 Hi, We are looking into this and would get back to you at our earliest. Thank you very much for your continued patience and patronage. Share this post Link to post Share on other sites
Guest Sashibhusan Report post Posted May 10, 2012 Hi, With regard to your issue, iPAD does not support Flash Charts. So to render the charts in JavaScript mode (or communicate with the JavaScript), you should pass the 'registerWithJS' parameter as '1' while creating FusionCharts JavaScript object. Ref. Code: var StackColumnChart = new FusionCharts("../FusionChartsXT/Column3D.swf", "ChtMthTrendDiv", 400, 300, "0", "1"); Hope this helps! Share this post Link to post Share on other sites
Guest Sashibhusan Report post Posted May 10, 2012 Also, please make sure that you have included the below mentioned JavaScript files in your application where you have FusionCharts.js file (in your case: "//ke32/FusionChartsXT/FusionCharts.js"). 1. FusionCharts.js 2. FusionCharts.HC.js 3. FusionCharts.HC.Charts.js 4. jquery.min.js Since FusionCharts.js will load the rest other files automatically on-demand, you must have the four files together in one place. Share this post Link to post Share on other sites