在JFreeChart中自定义CategoryPlot项目的工具

在JFreeChart中自定义CategoryPlot项目的工具

本文介绍了如何在JFreeChart中自定义CategoryPlot项目的工具提示?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要更改图表绘图中绘制的条形图中的默认工具提示的格式。

I need to change the format of the default tooltip in the bars drawn in the plot of a chart.

我不知道我的方向问题是正确的。我正在查看类 StandardCategoryToolTipGenerator 的默认格式,即

I don't know if my direction of looking at the problem is right. I am looking at the default format for the class StandardCategoryToolTipGenerator that is

DEFAULT_TOOL_TIP_FORMAT_STRING = "({0}, {1}) = {2}"

如何重新定义这个值?

提前感谢

推荐答案

设置 尝试这个例子在你的情节。

The StandardCategoryToolTipGenerator sets the MessageFormat ArgumentIndex values to the series, category and value. Try this example on your plot.

BarRenderer renderer = (BarRenderer) plot.getRenderer();
renderer.setBaseToolTipGenerator(new StandardCategoryToolTipGenerator(
    "Series {0}, Category {1}, Value {2}", NumberFormat.getInstance()));

这篇关于如何在JFreeChart中自定义CategoryPlot项目的工具提示?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!