【发布时间】:2016-09-14 15:54:21
【问题描述】:
我正在尝试创建一个饼图,当它被单击为shown in this example 时会展开它。 下面是我的 ColdFusion 代码,根据 ZingChart docs,它允许将分离属性设置为 true,这应该允许这种行为。但是,它似乎不起作用。我设置的 line-style 属性有效,但 detach 属性无效。任何帮助,将不胜感激。谢谢!
<cfset plot = {"line-style":"dotted","detach": "true"}>
<cfchart format="html" title="Sales Report" plot="#plot#">
<cfchartseries type="pie">
<cfchartdata item="2012" value="25">
<cfchartdata item="2013" value="25">
<cfchartdata item="2014" value="25">
<cfchartdata item="2015" value="25">
</cfchartseries>
</cfchart>
【问题讨论】:
标签: charts coldfusion coldfusion-10 zingchart