我正在尝试在 ColdFusion 11 中创建一个简单的折线图,并希望格式化 xAxis 以显示像 mm-dd-yy 这样的日期格式,而不是默认显示的完整日期/时间戳。
我的代码是:
<cfchart format="html"
chartwidth="800"
chartheight="400"
xaxistitle="Date"
yaxistitle="Amount"
showlegend="yes"
fontsize="12"
font="Arial"
showMarkers="no"
xAxis=#[{"format"="Date","label":"Date"}]#>
<cfchartseries type="line"
query="getAmounts"
valueColumn="amount"
itemColumn="date">
</cfchart>
xAxis 属性给出了这个错误:
You have attempted to dereference a scalar variable of type class coldfusion.runtime.Array as a structure with members.
我已经尝试了 xAxis 属性的几种不同变体,但没有成功 - 文档不清楚这应该是什么格式。任何帮助将不胜感激。