我正在尝试使用 cfchart 来显示消息数量并且一切正常,但是当我有少量数字时,它会将其分解为小数。有没有办法让它总是设置为整数?
这是代码:
<cfchart format="#display#" type="bar" show3d="no" showlegend="false" chartHeight="300" chartWidth="220">
<cfchartseries colorlist="##E18014,green,red" type="bar">
<cfchartdata item="Calls Made" value="#voice_messages.TotalMessages#">
<cfchartdata item="Successful" value="#voice_messages.ReceiptsReceived#">
<cfif #voice_messages.DeliveryFailures# neq "0">
<cfchartdata item="Bus/No Ans" value="#voice_messages.DeliveryFailures#">
</cfif>
</cfchartseries>
</cfchart>
这是图表的图片
我在 Stack 和网络上查看了所有内容,但没有找到任何东西。任何帮助将不胜感激。
谢谢!!