0

Hi I want to develop dynamic time series graph, (i.e time graphe which will updated automatically after few second) in SWT. I am able to do it using jFreechart in swing based application. Now I have shifted whole UI in eclipe RCP SWT. I have research ove web, I found that jfreechart not supported any longer on swt. is it true? SHould I drop jfreechart development on swt and find other altenative? what are other alternative for dynamic time series.

4

3 回答 3

2

是的,我不会在 SWT 中使用 JFreeChart,除非您愿意 1) 修复其中的错误或 2) 在 SWT GUI 中嵌入 Swing 框架。库中列出了几个用于 SWT 中漂亮图表的替代库?

于 2013-08-15T06:15:19.253 回答
1

亲爱的@user2670032 有一个在 RCP 中显示 jFreeChart 的选项,但我不确定这个解决方案在你的情况下是否有效,因为在我的情况下,我只需要在 RCP 视图中显示饼图一次。

  1. 将图表导出为 PNG 图像。
    ChartUtilities.saveChartAsPNG('image-name', chart, 500, 300, info);
  2. 使用 SWT 浏览器组合显示图表。
  3. 在 HTML 中使用导出的图像路径并在浏览器组合中设置此 HTML。

该解决方案满足我的需求。

于 2013-08-16T19:05:00.757 回答
0

与任何其他 Java 应用程序编码一样,JFreechart 图表应用程序可以通过在 SWT 插件开发中添加 jar 和在 eclipse 中的 ViewPart 中编码 Add Chart 来在 SWT 中开发,并且可以将视图部分添加到透视图中。可以开发Eclipse软件

于 2019-01-09T13:52:49.197 回答