pathutchinson

Printing Help / Ipad Rendering

Recommended Posts

I am having problems getting my charts to print at all and they don't render on IPADs.

 

I use cold fusion and ideally I'd like to be able to print directly to PDF using the cfdocument tag.

 

According to Fusion Charts website "its simply a matter of adding one line of code"

 

I have spent hundreds of hours trying to get this to work.

 

Does anyone have any suggestions?

 

Here is my code

 

<cfsilent>

<cfparam name="URL.animate" default="1">

<cfset animateChart = URL.animate>

<cfset strXML = "<chart caption='' subCaption='' labelDisplay='WRAP' baseFont ='Arial' baseFontSize ='11' Bold='1' pieRadius = '70' showBorder='0' enableSmartLabels ='1' paletteColors='196356,35882' formatNumberScale='0' numberSuffix='%2525' bgColor='ffffff,ffffff' startingangle='90' smartLineColor='CCCCCC' smartLineThickness='0' smartLineAlpha='40' isSmartLineSlanted='0' labelDistance ='1' exportEnabled='1' exportShowMenuItem='1' exportAtClient='1' exportHandler='fcExporter1'>

>">

<cfloop from="1" to="2" index="i">

<cfset strXML = strXML & "<set label='" & arrData[1] & "' value='" & arrData[2] & "' />">

</cfloop>

<cfset strXML = strXML & "</chart>">

</cfsilent>

<cfoutput>#renderChartHTML("Charts/Pie2D.swf", "", strXML, "Baseline", 350, 350, false, false)#</cfoutput>

 

 

 

Where would I put new code to make this printable and render on an IPAD?

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