Graeme Report post Posted December 10, 2017 When rendering 2 Pie2d charts on a single page, the labels do not appear in Firefox, only the lines. However, if you showLegend 1 labels then appear. <script> function LoadGraphs() { piechart1 = new FusionCharts({ "type": "pie2d", "renderAt": "chartContainer", "width": "500", "height": "300", "dataFormat": "json", "dataSource": { "chart": { showLegend:0 }, "data": [ { "label": "Mon", "value": "4123" }, { "label": "Tue", "value": "4633" }, { "label": "Wed", "value": "5507" }, { "label": "Thu", "value": "4910" }, { "label": "Fri", "value": "5529" }, { "label": "Sat", "value": "5803" }, { "label": "Sun", "value": "6202" } ] } }); piechart1.render(); piechart2 = new FusionCharts({ "type": "pie2d", "renderAt": "chartContainer2", "width": "500", "height": "300", "dataFormat": "json", "dataSource": { "chart": { showLegend:0 }, "data": [ { "label": "Mon", "value": "1123" }, { "label": "Tue", "value": "1633" }, { "label": "Wed", "value": "1507" }, { "label": "Thu", "value": "1910" }, { "label": "Fri", "value": "1529" }, { "label": "Sat", "value": "1803" }, { "label": "Sun", "value": "1202" } ] } }); piechart2.render(); } </script> <a href="javascript:LoadGraphs();">Run Test</a> <div id="chartContainer">FusionCharts XT will load here!</div> <div id="chartContainer2">FusionCharts XT will load here!</div> It works fine in IE and Chrome, but not in Firefox, based on the latest FusionCharts. The code works in Firefox with FusionCharts 3.10.1 Share this post Link to post Share on other sites
Ayan Bhadury Report post Posted December 11, 2017 Hi, This is a known issue, and it has been fixed internally, and it will be fixed in the next version release. If you still want a quick fix for the issue kindly send us a mail to [email protected] with your order and licensing details so that we could provide a quick patch fix for this. Share this post Link to post Share on other sites
pughmat Report post Posted June 12, 2018 I have requested this fix three times using the support email address. Please share this fix with us. Thanks! Ticket 522433 Share this post Link to post Share on other sites
Prerana Report post Posted June 14, 2018 Hello, We have already shared the patch file with you. Please check and let us know whether you have received the correct patch or not. Share this post Link to post Share on other sites