How to use cfcontent to export cfchart image to Word?
I tried to use cfcontent to send cfchart image to Word 2003. It did not work.
Does any one have idea how to do that please?
The code I used is:
<cfquery name="DataTable" datasource="#Request.DSN#" >
select *
from testchart
</cfquery>
<cfchart format="jpg"
xaxistitle="Department"
yaxistitle="Number">
<cfchartseries type="line"
query="DataTable"
itemcolumn="Dept"
valuecolumn="Number">
</cfchartseries>
</cfchart>