我正在使用JFreeChart的SpiderWebPlot来生成图表。但我想拥有的是具有价值观的工具提示。我发现我应该将StandardCategoryTooltipGenerator设置为情节,但这似乎不是重点。这是我的示例代码:
private JFreeChart prepareChart() {
Random rnd = new java.util.Random();
DefaultCategoryDataset dataSet = new DefaultCategoryDataset();
String rowKey = "Osobnik";
dataSet.addValue(rnd.nextInt(20), rowKey, "BLUFF");
dataSet.addValue(rnd.nextInt(20), rowKey, "CALL");
dataSet.addValue(rnd.nextInt(20), rowKey, "CHECK");
dataSet.addValue(rnd.nextInt(20), rowKey, "FOLD");
dataSet.addValue(rnd.nextInt(20), rowKey, "RAISE");
SpiderWebPlot plot = new SpiderWebPlot(dataSet);
// CategoryToolTipGenerator generator = new
// StandardCategoryToolTipGenerator();
// generator.generateToolTip(dataSet, 0, 1);
plot.setToolTipGenerator(new StandardCategoryToolTipGenerator());
plot.setStartAngle(54D);
plot.setInteriorGap(0.40000000000000002D);
plot.setToolTipGenerator(new StandardCategoryToolTipGenerator());
JFreeChart chart = new JFreeChart(plot);
return chart;
}
这是我想要完成的例子。
答案 0 :(得分:3)
ChartPanel
“向图表注册,以接收图表任何组成部分变更的通知。”我怀疑你忽略了构建ChartPanel
;如果static
版本为prepareChart()
,则以下main()
适用于我。另请参阅Initial Threads。
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
JFrame f = new JFrame("Spider Web Plot");
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.add(new ChartPanel(prepareChart()));
f.pack();
f.setLocationRelativeTo(null);
f.setVisible(true);
}
});
}
附录:根据发布的屏幕截图,您需要自定义CategoryItemLabelGenerator
,可以使用setLabelGenerator()
进行设置。它将从drawLabel()
调用,显示为here。例如,
plot.setLabelGenerator(new StandardCategoryItemLabelGenerator() {
@Override
public String generateColumnLabel(CategoryDataset dataset, int col) {
return dataset.getColumnKey(col) + " " + dataset.getValue(0, col);
}
});