TimeSeries:如何渲染线下的填充(或者,看起来是面积图)
我正在绘制随时间变化的 CPU 平均负载图(5 秒间隔)。传统上,这是作为实心填充面积图而不是单个浮动线来完成的,例如...
这似乎是一个非常简单的请求,但我一直无法找到解决方案。
我剩下的一个途径是对默认渲染器进行子类化..但我一直认为必须有更简单的东西。
你的线索&非常欢迎其他指点。
M。
I am graphing CPU load average over time (5s intervals). Traditionally this is done as a solid filled area graph rather than a single floating line, for example ...
It seems a very simple request, but I've not been able to find the solution.
My one remaining avenue is to subclass the default renderer .. but I keep thinking there has to be something simpler.
Your clues & other pointers would be most welcome.
M.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许我来晚了一点,但我有一个可能的解决方案给你。 jfreechart 允许制作这些图表。
由于您需要 CPU 负载图表,因此最好的图表类型是 TimeSeriesChart。用于此图表的最佳数据集是 TimeSeriesCollection。在图中,您的时间序列集合包含 2 个时间序列。
主要解决方案是使用 2 个渲染器和 2 个独立的数据集。第一个渲染(显示实心字段区域)应该是 XYAreaRenderer。第二个(显示水平线)应该是 XYLineAndShapeRenderer。
下面是我们如何使用它的示例:
当然,您可以根据需要自定义这些渲染器(例如设置自定义颜色等)。请在此界面查看更多信息: XYItemRenderer。
此外,您还可以自定义图表(图)。请看这里:绘图。
Maybe I am a little bit late, but I have a possible solution for you. jfreechart allows to make these charts.
Since you need for CPU load chart, the best type of chart is TimeSeriesChart. The best dataset using for this chart is TimeSeriesCollection. In the picture your timeseries collection contains 2 timeseries.
The main solution is to use 2 renderers with 2 separate datasets. The first render (that displays solid field area) should be XYAreaRenderer. The second (that displays horizontal line) should be XYLineAndShapeRenderer.
Here is an example how we can use it:
Of course you can customize these renderers as you want (such as set custom colors and so on). Please, see more information at this interface: XYItemRenderer.
Also, you can customize the chart (plot). Look here: Plot.
您可能正在寻找
org.jfree.chart.renderer.AreaRenderer
。 java 中显示了几个示例-web-start 面积图下的示例演示面积图。或者,XYBarRenderer
制作了一个很好的直方图。
You are probably looking for an
org.jfree.chart.renderer.AreaRenderer
. Several examles are shown in the java-web-start sample demo under Area Charts. Alternatively, anXYBarRenderer
makes a nice histogram.