Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
bill_doe #1
cfchart image not exporting to Word when using cfcontent
Hello all, I'm using cfcontent (see code below) to output formatted query
results into MS Word, but the cfchart I am creating (see code below) does not
show up in the resulting Word doc for some reason. It shows up in the HTML
page just fine. I have tried both flash and jpg as the format, but neither
seems to work when exporting to Word. Any ideas?
Thanks,
Bill
<!--- export to Word if selected in the form --->
<cfif outputtype EQ "WORD">
<cfcontent type="application/msword">
<cfheader name="Content-Disposition"
value="attachment;filename=detail_report.doc">
</cfif>
<!--- Builds my pie chart --->
<cfchart format="jpg" show3d="yes" chartheight="125" chartwidth="300"
seriesplacement="default"
databackgroundcolor="white" showborder="yes" labelformat="number"
tipstyle="mouseOver" tipbgcolor="FFFFE1"
pieslicestyle="sliced">
<cfchartseries type="pie" colorlist="green, red">
<cfchartdata item="Percent Satisfied" value="#PercentSatisfied#">
<cfchartdata item="Percent Not Satisfied" value="#PercentNotSatisfied#">
</cfchartseries>
</cfchart>
bill_doe Guest
-
cfchart broken image
I have three websites on the same server. Each has exactly the same page using cfchart. The chart images display correctly on one site but show up... -
CFCHART Image Expired CF7
I have a script that will generate 7 Charts. If I run 10 days worth of data all the charts appear fine.(usually) 10 days of data proc time =21157... -
Writing Word with CFContent
I can write a simple word document using cfcontent. However, I do not seem to be able to impose any formatting on it. Does anyone out there have any... -
CFCHART IMAGE EXPIRED
I can view the chart, but when they're sent to the printer(within seconds) the print version shows the message of chart being expired. -
exporting for word
I agree...Word and PowerPoint don't support all the attributes of transparent PNGs. JPGs tend to display "blurry" and print with halos around small...



Reply With Quote

