How to customize a tooltip of CategoryPlot items in JFreeChart?(如何在 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}"
如何重新定义这个值?
提前致谢.
推荐答案
StandardCategoryToolTipGenerator
设置 MessageFormat
ArgumentIndex 值到 series、category 和 值.在你的情节上试试这个例子.
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 项目的工具提示?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 JFreeChart 中自定义 CategoryPlot 项目的工具提示?
基础教程推荐
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 降序排序:Java Map 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01