使用 JFreeChart 我想在 BoxAndWhiskerChart 中添加一条直线,因此结果如下所示:
7 | - -
6 | x -
5 | x x
4 | - -
3 | -
2 |------------ <- ?
1 |
0 +------------
A B C
这本质上是我创建图表的代码:
DefaultBoxAndWhiskerCategoryDataset dataset = new DefaultBoxAndWhiskerCategoryDataset();
//adding data to dataset...
BoxAndWhiskerRenderer rnd = new BoxAndWhiskerRenderer();
CategoryPlot plot = new CategoryPlot(dataset, x, y, rnd);
JFreeChart chart = new JFreeChart(plot);
有没有一种简单的方法可以在图表中添加一条线?