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);
チャートに線を追加する簡単な方法はありますか?