Neal Report post Posted December 22, 2009 FusionCharts is a very recent purchase, but I have to say I am very impressed. The one thing I cannot get to work though is allowing clients to save images. The chart loads, I get the right-click menu to save it as a jpg, the file seems to be processing, but the "wait" button never changes so no "Save As" option. Here's what it says in debug mode: Export Capture Process Start: The chart has started capturing bitmap data for export. Export Trasmit Data Start: The chart has finished capture stage of bitmap export and is now initiating transfer of data to JS function 'FC_ExportDataReady'. I am at v. 3.1.1 of FC and v. 10 for Flash. Here are the parameters in my .xml file: exportEnabled='1' exportAtClient='1' exportHandler='fcExporter1' exportFormats='JPG=Export as JPEG|PDF=Export as PDF|PNG=Export as PNG' I'm running this locally for now, but I've also posted the files to an external website and it still won't let me save an image. Thanks: Neal Share this post Link to post Share on other sites
srividya_sharma Report post Posted December 22, 2009 Hi Neal, Please see http://www.fusioncharts.com/forum/Topic20789-28-1.aspx Maybe you missed the Flash Global Settings. Hope this helps Srividya Share this post Link to post Share on other sites
Neal Report post Posted December 23, 2009 I should have mentioned it, but yes, I did find that and change my settings. I still can't get it to work, but I'm pretty sure it's something simple. Once again, here's what the debug says: Export Capture Process Start: The chart has started capturing bitmap data for export. Export Trasmit Data Start: The chart has finished capture stage of bitmap export and is now initiating transfer of data to JS function 'FC_ExportDataReady'. Share this post Link to post Share on other sites
srividya_sharma Report post Posted December 23, 2009 Hi Neal, Please send us the html code from view source. ( and xml ) It will help us locate the issue. Srividya Share this post Link to post Share on other sites
Neal Report post Posted December 25, 2009 Certainly. Merry Christmas. Neal ArchFordX.html.txt ArchFordX.xml.txt Share this post Link to post Share on other sites
srividya_sharma Report post Posted December 25, 2009 Merry Christmas Neal. In the xml that you have attached, there is no space between two attributes: decimals='0'exportEnabled='1' Please verify whether this is causing the problem. Give a space between the two attributes. Hope this helps! Srividya Share this post Link to post Share on other sites
Neal Report post Posted December 26, 2009 I appreciate your help. I made the requested changes as well as putting spaces between other attributes that did not have a space. The export function still does not work. As before, here's the debug message: Export Capture Process Start: The chart has started capturing bitmap data for export. Export Trasmit Data Start: The chart has finished capture stage of bitmap export and is now initiating transfer of data to JS function 'FC_ExportDataReady'. Share this post Link to post Share on other sites
srividya_sharma Report post Posted December 26, 2009 Hi Neal, Can you tell me, what you are seeing on screen? I hope you are able to see the Capturing... dialog box. After 100% of that, what happens? Srividya Share this post Link to post Share on other sites
Neal Report post Posted December 27, 2009 That is correct. It reports that the capture is 100%, but that then closes and no "Save As" menu comes up. The "Waiting" box below the graph remains grayed out and is not responsive. Neal Share this post Link to post Share on other sites
Guest Rajroop Report post Posted December 29, 2009 Hi Neal, I really appreciate your patience on this issue. Could you please try replacing the following line of code in your HTML code: var myChart = new FusionCharts("Bubble.swf", "FusionCharts_1", "600", "500", "0", "0"); to the following one: var myChart = new FusionCharts("Bubble.swf", "FusionCharts_1", "600", "500", "0", "1"); To register the chart with JavaScript, we set the registerWithJS parameter to 1. It's the last parameter in FusionCharts constructor function, as shown above. I'm confident that on making this change you would not be facing any more issue(s) regarding the export process. Hope this helps. Share this post Link to post Share on other sites