我在我的项目中使用FusionChart,并希望使用cfdocument
中的图表来创建PDF。图表在我的ColdFusion页面中正确加载,但不在cfdocument生成的PDF中。
FusionCharts.ready(function () {
var myChart = new FusionCharts({
"id" : "id",
"type": "column",
"width": "#chartwidth#",
"height": "#chartheight#",
"dataFormat": "xml",
"dataSource": "#strXML#"
});
myChart.render("chartContainer");
});
答案 0 :(得分:0)
图表功能在cfdocument
内无效。因此,将图表放在cfdocument
之外,并将图表转换为图像。然后在cfdocument
内显示图像,如下所示,并调用cfdocument
内的图像路径。
<cfchart format="png" scalefrom="0" scaleto="1200000" name="chartimage">
<cfchartseries type="bar" dataLabelStyle="value"
serieslabel="chart" seriescolor="blue">
<cfchartdata item="January" value="503100">
<cfchartdata item="February" value="720310">
<cfchartdata item="March" value="688700">
<cfchartdata item="April" value="986500">
<cfchartdata item="May" value="1063911">
<cfchartdata item="June" value="1125123">
</cfchartseries>
</cfchart>
<cffile action="write"
file="#ExpandPath('charts/imageName.jpg')#"
output="#chartimage#" />