creadtibe Report post Posted April 2, 2013 Hi, I have a problem with IE10, only show the message "Data no display" and not the charts. Others web browsers show the charts correctly. I render the charts in Javascript: $.post( Drupal.settings.basePath + Drupal.settings.enefgy.currentLanguage + "/intranet/ajax/activa", { id_nodo: id, inicio: inicio, fin: fin, hasFlash: hasFlash, formato: formato}, function(data){ if (typeof(data) == 'object' && window.ActiveXObject) { var str = data.xml; } //for IE covert xml to a string else { str = data; } // code for Mozilla, Firefox, Opera, etc. if (! window.ActiveXObject) var str = (new XMLSerializer()).serializeToString(data); // code for Mozilla, Firefox, Opera, etc. var myChartActiva = new FusionCharts( Drupal.settings.basePath + path_fusionCharts + "ZoomLine.swf","myChartActivaId", width, height, "0", "1"); myChartActiva.setXMLData(str); myChartActiva.render(divUsar); }); Attach test.xml. Thank you. Greetings, Jose. test.xml Share this post Link to post Share on other sites
creadtibe Report post Posted April 3, 2013 i'm using FusionCharts 3.2 Share this post Link to post Share on other sites
Guest Sashibhusan Report post Posted April 3, 2013 (edited) Hi, I am afraid, we are able to render the chart in IE10 using your XML and latest FusionCharts XT V 3.3.0 files. Please find the attached scrren shot of the same for your reference. Could you please upgrade to the latest version and see if it helps? If you are still facing the issue, please provide the scaled down sample to test form our end. Hope this helps! Edited April 3, 2013 by Sashibhusan Share this post Link to post Share on other sites
creadtibe Report post Posted April 4, 2013 (edited) Thanks Sashibhunsan. My solution is only change the javascript codE: $.post( Drupal.settings.basePath + Drupal.settings.enefgy.currentLanguage + "/intranet/ajax/activa", { id_nodo: id, inicio: inicio, fin: fin, hasFlash: hasFlash, formato: formato}, function(data){ if (typeof(data) == 'object' && window.ActiveXObject && ! isIE10()) { var str = data.xml; } //for IE covert xml to a string else { str = data; } // code for Mozilla, Firefox, Opera, etc. if (! window.ActiveXObject || isIE10()) var str = (new XMLSerializer()).serializeToString(data); // code for Mozilla, Firefox, Opera, IE10 etc. var myChartActiva = new FusionCharts( Drupal.settings.basePath + path_fusionCharts + "ZoomLine.swf","myChartActivaId", width, height, "0", "1"); myChartActiva.setXMLData(str); myChartActiva.render(divUsar); }); Edited April 4, 2013 by creadtibe Share this post Link to post Share on other sites
Guest Sashibhusan Report post Posted April 5, 2013 Hi, I am glad to hear that you have managed of your own to resolve your issue. Share this post Link to post Share on other sites