Coldfusion 中的 JFreeChart 表盘图表
有没有人有在 Coldfusion 上实现 JFreechart Dial 图表的示例?
谢谢
Has anyone an example of implementing a JFreechart Dial chart on Coldfusion?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
(这可能不应该是一个单独的答案,但另一个已经很长了。所以我单独发布它以保持内容井然有序且易于查找。)
如果您正在寻找 jFreeChart 调用的内容MeterChart,这是该图表类型的一个快速而肮脏的示例。
MeterChart 代码:
辅助功能:
(This probably should not be a separate answer, but the other was already pretty long. So I am posting it separately to keep things organized and easy to find.)
In case you are looking for what jFreeChart calls a MeterChart, here is a quick and dirty example of that chart type.
MeterChart Code:
Auxiliary functions:
包
org.jfree。 Chart.demo
有如何构建一些基本图表的示例;单击类名即可查看源代码。org.jfree.chart.ChartFactory 的方法
展示如何构建更多。类org.jfree.chart.ChartUtilities< /code>
包括以多种格式传输图表的方法。相应的
response.setContentType()
可在任何 servlet 容器中工作。如果这是未知领域,我会推荐JFreeChart 开发人员指南†。
†免责声明:不隶属于 Object Refinery Limited;只是一个满意的客户和非常小的贡献者。
The package
org.jfree.chart.demo
has examples of how to construct a few basic charts; click on the class name to see the source. The methods oforg.jfree.chart.ChartFactory
show how to construct still more. The classorg.jfree.chart.ChartUtilities
includes methods to stream charts in several formats. A correspondingresponse.setContentType()
works from any servlet container.If this is terra incognita, I'd recommend The JFreeChart Developer Guide†.
†Disclaimer: Not affiliated with Object Refinery Limited; just a satisfied customer and very minor contributor.
根据trashgod 的建议,我为CF7 创建了一个非常基本的示例。显然,您可以用它做更多更多事情。只需查看 api 和/或购买开发人员指南即可。
安装:
下载最新的 jfreeChart。将以下 jar 复制到
{cf_root}\WEB-INF\lib
中并重新启动 CF。 注意,jar 版本号可能会有所不同。示例:
Using trashgod's suggestions, I created a very rudimentary example for CF7. You can obviously do much more with it. Just review the api and/or purchase the developer guide.
Install:
Download latest jfreeChart. Copy the following jars into
{cf_root}\WEB-INF\lib
and restart CF. Note, jar version numbers may vary.Sample: