Rajavelu Report post Posted June 24, 2013 Hi ! Debug mode in jqueryplugin is not working for charts&maps to me. My code : <span id="map"></span> <script> $("#map").insertFusionCharts({ dataSource: 'test1.xml', height : "100%", width : "100%", renderer : "JavaScript", quality : "high", type:"WorldwithCountries", dataFormat: "xmlurl", debugMode: "1" }); </script> Share this post Link to post Share on other sites
Swarnam Report post Posted June 24, 2013 Hey, The debugMode" attribute set to 1, displays the debug window only for Flash charts. Share this post Link to post Share on other sites
Rajavelu Report post Posted June 24, 2013 Thanks, but how this javascript charts using jqueryplugin will be debug ? Share this post Link to post Share on other sites
Haritha Report post Posted June 26, 2013 Hi, The JavaScript variants of FusionCharts can be debugged by using the FusionCharts JavaScript Debug Mode. It allows users to watch the chart’s JS activities and debug charts accordingly. To enable the JavaScript Debug Mode, you need to write the following lines of code: FusionCharts.debugMode.enabled(true); Also, you need to specify where you will like to display the debugMode output. In case you want to see the error within the browser’s JavaScript console, you will need to write the following lines of code. FusionCharts.debugMode.outputTo( function() { console.log(arguments); } ); For more information, please refer our documentation link : http://docs.fusioncharts.com/charts/contents/Debug/JS.html Hope this helps. Share this post Link to post Share on other sites