我正在尝试将 cfchart 与 html 格式一起使用:
<cfchart format="html" type="bar" chartHeight="600" chartWidth="1100" title="Sales Chart"
font="Arial" fontBold="true" fontSize="13"
>
<cfchartseries type="line" seriesColor="##3232FF">
<cfloop query="getData">
<cfchartdata item="#Date#" value=#sales#>
</cfloop>
</cfchartseries>
</cfchart>
但是,它返回错误:
Client Side Charting is not available in this edition of ColdFusion server.
我正在使用 CF10 并控制服务器。如何启用 cfchart 格式的 HTML?顺便说一句,如果我将格式更改为 png,它可以工作。