条形图工具提示

时间:2012-05-24 07:52:51

标签: java spring-mvc jfreechart

我使用Jfreechart 1.0.13使用spring mvc生成条形图。我正在使用

ChartUtilities.writeChartAsJPEG(response.getOutputStream(), jfreechart1, 400, 400);

在浏览器中显示图像。我在哪里可以设置工具提示?

我尝试了以下但不起作用:

 CategoryPlot categoryplot = (CategoryPlot) jfreechart.getPlot();
 BarRenderer barrenderer = (BarRenderer) categoryplot.getRenderer();
 barrenderer.setBaseToolTipGenerator(new StandardCategoryToolTipGenerator());
 final ChartRenderingInfo info = new ChartRenderingInfo(new StandardEntityCollection());

我使用jsp将图表渲染为图像。当我使用图表框架显示图表时显示工具提示,但不是Web应用程序。任何人都可以建议我如何解决这个问题?

0 个答案:

没有答案