I am using Fusion Charts 3.2 and using print manager to print charts. Prints are much better compared to previous versions of fusion charts in firefox. However the charts are still clipped off at the end especially when I user 100% for width.
Here are the details of my environmetn and code:
I am using VB.NET
I include FusionCharts.js in my aspx file.
ltlPr and LtlPrint are the two literals.
Following is my code in code behind: (note that sXmlData contains the xml string for the chart.)
ltlPr.Text = FusionCharts.EnablePrintManager()
ltlPrint = FusionCharts.RenderChart("FusionCharts/Column3D.swf", "", sXmlData, "myNext", "100%", "300", false, true)
If I change parameter 5 (width) to specific number of pixels, say 600, prints are fine. But specifying 100% clips the border if the chart at the end when printed from firefox.
Any help is highly appreciated.