Sign in to follow this  
ramuthefriend

fusion chart not displaying in IE but works in Firefox.

Recommended Posts

HI Team,

 

Already chart rendered in pop-in page .

what i am trying to do is only dispaing chart in another page for printing.

It is working fine in Firefox but not working in IE.

am getting stucked for this please help me out of this.

recenly i upgarded to 3.3 libary.

 

i am using the below code.

 

FusionCharts.printManager.enabled(true);
                                var printSeq = getChartPrintSeq();
                                FusionCharts.setCurrentRenderer('javascript')
                                var DocumentContainer = document.getElementById('ChartContainer'+printSeq[0]);
                                var WindowObject = window.open('', "PrintWindow", "width=600,height=400,top=50,left=50,toolbars=no,scrollbars=yes,status=no,resizable=yes");  
                                WindowObject.document.write('<html><head></head><body>');
                                WindowObject.document.writeln(DocumentContainer.innerHTML);
                                WindowObject.document.write('</body></html>');

 

 

chart container has about chart details and am able to displaying another page.

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