我想在Coldfusion中绘制区域图。我知道我们可以与WebCharts3D集成,但我不知道如何绘制它。
答案 0 :(得分:4)
看起来您正在寻找多系列区域图表。
您可以使用<cfchart>
标记在CF中创建这些内容。文档为here,如果您使用Google,则会有很多示例,例如here和here。
作为替代方案,我建议使用Google Charts API。它提供了一种创建许多不同图表类型的方法,我使用它代替<cfchart>
,我需要在CF页面之外创建图表(例如在电子邮件中)。很有用。
答案 1 :(得分:0)
我现在不需要任何答案。因为,我自己完成了。
<cfchart
chartheight="200"
chartwidth="300"
xaxistitle="Year"
yaxistitle="Month"
format="png">
<cfchartseries type="area">
<cfchartdata item="10" value="40">
<cfchartdata item="20" value="50">
</cfchartseries>
<cfchartseries type="area">
<cfchartdata item="30" value="80">
<cfchartdata item="40" value="90">
</cfchartseries>
</cfchart>