bsklar Report post Posted February 11, 2008 I have the following code: <HTML> <HEAD> <TITLE>FusionCharts & JavaScript - Basic Example</TITLE> <script language="JavaScript" src="../JSClass/FusionCharts.js"></script> <SCRIPT LANGUAGE="JavaScript"> //FC_Rendered method is called whenever a FusionCharts chart on the page //has finished initial rendering. To this function, the chart passes its //own DOM Id. var values = []; var ren_Chart_dip = false; var ren_Chart_dzn = false; var ren_Chart_dhn = false; //FC_Rendered method is called whenever a FusionCharts chart on the page //has finished initial rendering. To this function, the chart passes its //own DOM Id. function FC_Rendered(DOMId){ //If it's our required chart if (DOMId=="Chart_dip"){ ren_Chart_dip = true; } if (DOMId=="Chart_dzn"){ ren_Chart_dzn = true; } if (DOMId=="Chart_dhn"){ ren_Chart_dhn = true; } if (ren_Chart_dip && ren_Chart_dzn && ren_Chart_dhn){ alert("All charts rendered"); } return; } </SCRIPT> </HEAD> <BODY> <div id="chart1div"> FusionCharts </div> <div id="chart2div"> FusionCharts </div> <div id="chart3div"> FusionCharts </div> <script language="JavaScript"> var dip_chart1 = new FusionCharts("../Charts/Pie3D.swf", "Chart_dip", "400", "300", "0", "1"); dip_chart1.setDataXML("<chart><set label='A' value='10' /><set label='B' value='11' /></chart>"); dip_chart1.render("chart1div"); var dzn_chart2 = new FusionCharts("../Charts/Pie3D.swf", "Chart_dzn", "400", "300", "0", "1"); dzn_chart2.setDataXML("<chart><set label='A' value='10' /><set label='B' value='11' /></chart>"); dzn_chart2.render("chart2div"); var dhn_chart3 = new FusionCharts("../Charts/Pie3D.swf", "Chart_dhn", "400", "300", "0", "1"); dhn_chart3.setDataXML("<chart><set label='A' value='10' /><set label='B' value='11' /></chart>"); dhn_chart3.render("chart3div"); </script> </BODY> </HTML> if I change the line of: dhn_chart3.setDataXML("<chart><set label='A' value='10' /><set label='B' value='11' /></chart>"); to dhn_chart3.setDataXML("<chart><set label='A' value='42010' /><set label='B' value='11' /></chart>"); It will not display the alert of "All Charts rendered". Share this post Link to post Share on other sites
bsklar Report post Posted February 12, 2008 Please respond to this. This problem seems to appear whenever a slice of the the pie is 75% or greater. Share this post Link to post Share on other sites
Pallav Report post Posted February 13, 2008 Hi, We confirm this issue and have escalated it to the development team. I'll get back on this to you ASAP. Share this post Link to post Share on other sites
Pallav Report post Posted February 13, 2008 Hi, We've resolved the bug. If you could please send us your order id at [email protected], I'll send the updates to you right away. Share this post Link to post Share on other sites
Niluje Report post Posted March 6, 2008 Hi, is this fix included in the 3.0.6 release ? Share this post Link to post Share on other sites
Pallav Report post Posted March 6, 2008 No - we'll be releasing another 3.0.6( for pie chart only. Share this post Link to post Share on other sites