Sign in to follow this  
qiangw808

Printmanager With Pie2D Issue

Recommended Posts

Below is js for rendering Pie2D chart, but I want to know why the piechart always can not ready for managed print

and whether all categories support managed print. I need your help.

 

<script type="text/javascript">

var chartSWF= "../../resources/flash/Pie2D.swf";

var strJson = ${jsonString};

var chartId= "Monthly Allocation";

var chartWidth= 600;

var chartHeight=300;

 

var _chart = new FusionCharts(chartSWF, chartId, chartWidth, chartHeight);

 

// Provide entire XML data using dataXML method

_chart.setJSONData (strJson);

 

//Finally, render the chart.

_chart.render("fusionChartDiv");

 

FusionCharts.addEventListener("PrintReadyStateChange", function (e, a) {

document.getElementById("printButton").disabled = !a.ready;

document.getElementById("status").innerHTML = a.ready ?

'Charts are ready for print. You may use File->Print now.' :

'Charts are not ready for managed print. Please wait.'

});

 

FusionCharts.printManager.enabled(true);

 

</script>

Edited by qiangw808

Share this post


Link to post
Share on other sites
Guest Angshu

Hi,

 

Welcome to FusionCharts Forum! smile.gif

 

Please note that Print Manager takes a bit of time to prepare all the charts ready for printing. It depends on the size of the chart as well as the processing power of the client side computer. If print action is invoked while the Print Manager is not yet ready with the image, the chart does not show up in the print media. However, if the function managedPrint() is called, it automatically waits for the all the chart to get ready before it proceeds to call the window.print() function.

 

Hence, it is recommended to call managedPrint() function instead of the other actions.

 

More details at: http://www.fusioncha...intManager.html

Hope this helps.

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