如何使用 JFreeChart 绘制曲面?

发布于 2024-09-30 02:08:49 字数 105 浏览 5 评论 0 原文

我希望能够设置图表上每个点的颜色(由 x&y 寻址,其中 x 是日期时间(实际上是 joda-time),y 是双精度值)来表示 az=f(x ,y) 值。 JFreeChart 可以吗?

I'd like to be able to set a colour of every point (addressed by x&y, where x is a DateTime (of joda-time, actually) and y is a double) on a chart to represent a z=f(x,y) value. Is it possible with JFreeChart?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

浪漫之都 2024-10-07 02:08:49

如果我正确理解您的需求,我认为您想将 XYPlot 与 XYBlockRenderer 一起使用。
引用文档:

渲染器,通过在每个 (x, y) 点绘制颜色块来表示 XYZDataset 中的数据,其中颜色是数据集中 z 值的函数

检查 XYBlockRenderer 文档中的示例图像: http://www.jfree.org/jfreechart/api /javadoc/org/jfree/chart/renderer/xy/XYBlockRenderer.html

If I understood your needs correctly I think you want to use an XYPlot with an XYBlockRenderer.
Quoting the docs:

A renderer that represents data from an XYZDataset by drawing a color block at each (x, y) point, where the color is a function of the z-value from the dataset

Check the sample image in the docs for XYBlockRenderer: http://www.jfree.org/jfreechart/api/javadoc/org/jfree/chart/renderer/xy/XYBlockRenderer.html

颜漓半夏 2024-10-07 02:08:49

据我记得默认情况下这是不可能的。您只能为每个绘制的系列设置一种颜色。但是,我认为可以扩展 AbstractRenderer 并实现您所需要的。

当然也有可能是我弄错了。记不太清了。 :P

As far as I remember that's not possible by default. You can set only one color for every plotted series. However, I think it's possible to extend AbstractRenderer and achieve what you need.

Of course there is possibility that I'm mistaking. Dont remember for sure. :P

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文