Sign in to follow this  
onkar

Fusioncharts export with version 3.5

Recommended Posts

Hi I have upgraded fusioncharts version 3.3 to  version 3.5 . I am using fusion chart in my asp.net application,

Here is code to export all charts on the page one by one

 

 for (chartCount = 0; chartCount < chartIds.length; chartCount++) {

                //Get chart to export it in image.
                var chart = getChartFromId(chartIds[chartCount]);
                //Check if chart has rendered.
                if (chart.hasRendered())
                //If chart is rendered then export it into image
                    chart.exportChart({ exportFormat: 'PNG' });
            }

 

 function FC_Exported(objRtn) {
            SetValues();      
        }

 

but when I am trying to use objRtn it gives me error as "object is undefined". Is FC_Exported function's prototype changed? Because of this error I am unable to get objRtn.statusCode to check wheather chart exported successfully or not.

and do I have to change fusioncharts.dll for upgradion to v3.5 in asp.net?

 

I don't find any information regarding Usage of new version in version 3.4 documentation.

 

 

Share this post


Link to post
Share on other sites

Hi I have upgraded fusioncharts version 3.3 to  version 3.5 . I am using fusion chart in my asp.net application,

Here is code to export all charts on the page one by one

 

 for (chartCount = 0; chartCount < chartIds.length; chartCount++) {

 

                //Get chart to export it in image.

                var chart = getChartFromId(chartIds[chartCount]);

                //Check if chart has rendered.

                if (chart.hasRendered())

                //If chart is rendered then export it into image

                    chart.exportChart({ exportFormat: 'PNG' });

            }

 

 function FC_Exported(objRtn) {

            SetValues();      

        }

 

but when I am trying to use objRtn it gives me error as "object is undefined". Is FC_Exported function's prototype changed? Because of this error I am unable to get objRtn.statusCode to check wheather chart exported successfully or not.

and do I have to change fusioncharts.dll for upgradion to v3.5 in asp.net?

 

I don't find any information regarding Usage of new version in version 3.4 documentation.

Hi,

 

Please note that we have already identified this issue and reported to our Engineering team.

 

We are working on this and expect to resolve this in the next upgraded version.

 

Thank you for your patience.

Share this post


Link to post
Share on other sites

But I didn't get answer to my second question that is there any latest fusioncharts.dll for fusioncharts  version 3.5 ? I want to use it in Asp.net application.

Share this post


Link to post
Share on other sites

Hi,

 

Please note that we have already identified this issue and reported to our Engineering team.

 

We are working on this and expect to resolve this in the next upgraded version.

 

Thank you for your patience.

But I didn't get answer to my second question that is there any latest fusioncharts.dll for fusioncharts  version 3.5 ? I want to use it in Asp.net application.

Share this post


Link to post
Share on other sites

But I didn't get answer to my second question that is there any latest fusioncharts.dll for fusioncharts  version 3.5 ? I want to use it in Asp.net application.

Hi,

 

Apologies for missing out the query.

 

There is no latest DLL file for using with the latest version, i.e, FusionCharts v3.5.0.

 

You can continue to use the previous version DLL file that would work perfectly as expected. You may check with the attached sample for your reference.

 

Hope this helps. :)

ChartSamplev35.zip

Share this post


Link to post
Share on other sites

Hi,

 

Apologies for missing out the query.

 

There is no latest DLL file for using with the latest version, i.e, FusionCharts v3.5.0.

 

You can continue to use the previous version DLL file that would work perfectly as expected. You may check with the attached sample for your reference.

 

Hope this helps. :)

Thanks a lot for reply.

I have another one question ,

I read about exporting chart without rendering it in browser. I want to do it in .net application. You have provided  FusionChartsImageSaver.dll for that. But it supports only xml data and it is not updated for fusioncharts latest version(if am not wrong).

So can you provide updated information on it?

 

Thanks.

Share this post


Link to post
Share on other sites

Thanks a lot for reply.

I have another one question ,

I read about exporting chart without rendering it in browser. I want to do it in .net application. You have provided  FusionChartsImageSaver.dll for that. But it supports only xml data and it is not updated for fusioncharts latest version(if am not wrong).

So can you provide updated information on it?

 

Thanks.

Hi,

 

We have replied to your query in the following Forum post.

Ref.- http://forum.fusioncharts.com/topic/16245-save-chart-image-without-rendering-it-in-browser/

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
Sign in to follow this