如何在Box and Whisker Chart中添加一行?

时间:2013-03-26 11:25:22

标签: java charts jfreechart

使用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); 

有没有简单的方法在图表中添加一行?

1 个答案:

答案 0 :(得分:2)

是 - 您需要将Marger添加到Range Axis。您可以找到示例here

尝试添加此代码:

final Marker valueMarker= new ValueMarker(2.0);
valueMarker.setPaint(Color.green);
plot.addRangeMarker(valueMarker);