debashish_parasar

FusionCharts V3 client side graph export feature not working in FF 1.5.0.10

Recommended Posts

I'd not been able to make FusionCharts V3 graph export feature work in Firefox 1.5.0.10, for latest versions of IE and FF it is working.

 

 

 

I've used FusionChartsExportObject method in FusionChartsExportComponent.js file.

 

 

 

Can somebody help or atleast ascertain that its not going to work with older versions of FireFox, IE?

Share this post


Link to post
Share on other sites
Guest Madhumita

Hi Debashish,

Welcome to the FusionCharts Forum.:)

We do not have any "known" issue with older FF or IE6 and above.

 

It would be easier for us to understand and resolve the issue if you attach a scaled down version or provide a live url where we can test.

Please also check the FusionCharts Version you are using.

Starting FusionCharts v3.0.7, you could export your charts as images. And FusionCharts v3.1 adds new dimensions to it, by allowing you to export as PDFs as well, and also lets you choose whether to export the charts at client-side or server-side.

Awaiting your reply. :)

Share this post


Link to post
Share on other sites

Thanks for response.

 

 

 

Unfortunately, I do not have a live URL to offer. But pasting below my jscript/template-toolkit snippets:

 

....

 

function download_button(id,graphname) {

 

var myExportComponent = new FusionChartsExportObject(id, "/swf/FCExporter.swf");

 

myExportComponent.componentAttributes.width = '295';

 

myExportComponent.componentAttributes.btnWidth = '295';

 

myExportComponent.componentAttributes.btnHeight= '25';

 

myExportComponent.componentAttributes.btnColor = 'E1f5ff';

 

myExportComponent.componentAttributes.btnBorderColor = '000000';

 

myExportComponent.componentAttributes.btnsavetitle = 'Save the above chart now';

 

myExportComponent.componentAttributes.btnFontColor = '0372AB';

 

myExportComponent.componentAttributes.btnFontSize = '15';

 

myExportComponent.componentAttributes.btndisabledtitle = 'Right click on above chart for export';

 

myExportComponent.Render(graphname+'_export');

 

}

 

....

 

 

download_button("[% item.id %]","[% item.graph %]");

 

 

 

 

There is no PERL API download avilable unlike Java,Ruby,PHP etc hence I cannot do server side export in PERL. So I am using the client side export which is working fine with latest IE, FF.

 

 

 

This installation is under a Developer License. Version.txt says

 

 

 

FusionCharts v3.1

 

Release: 24th February 2009

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now