steveddei Report post Posted April 27, 2010 I am using v3.1, so far all charts export fine using .exportChart(), however MSCombi3D is just exporting the 'Canvas', not the chart. I have animation off, so this is not the issue. Here is a screenshot: And the exported Image: Share this post Link to post Share on other sites
Guest Basundhara Ghosal Report post Posted April 28, 2010 Hi Steve, We have tested the issue in our lab and is not able to replicate it. Please refer to the screen-shots that we are sending you as an attachment. Also, please refer to the XML codes that we are sending you as an attachment. Hope this helps. exported_image.zip Share this post Link to post Share on other sites
steveddei Report post Posted April 28, 2010 Thanks Basundhara. I have tested with mine and noticed it DOES work when you manually right-click and export-to-image, however, it DOES NOT work when you use the callback and JS to trigger the export. All other charts work correclty so far. MSCombi3D is having trouble. Please see attached HTML use case file. chart_test.zip Share this post Link to post Share on other sites
steveddei Report post Posted May 3, 2010 Any update on this bug?? Share this post Link to post Share on other sites
FusionCharts Support Report post Posted May 3, 2010 Hi, It is only because of a nano fraction of a delay not achieved in some Flash Players versions. Please use a fractional delay before you export: Your code can be like this: function FC_Rendered(DOMId){ var chartObj = getChartFromId(DOMId); var intv= window.setInterval(function(){ if(chartObj && chartObj.hasRendered && chartObj.hasRendered()==true) { chartObj.exportChart(); window.clearInterval(intv); } }, 0); Share this post Link to post Share on other sites
steveddei Report post Posted May 3, 2010 Thanks. Did the trick! Share this post Link to post Share on other sites
Guest Basundhara Ghosal Report post Posted May 3, 2010 Hi, Glad that your issue is resolved. Keep smiling and keep FusionCharting. Share this post Link to post Share on other sites
shamasis Report post Posted May 3, 2010 Hey Sudipto, That was an amazing solution. :smooooth: Share this post Link to post Share on other sites