Java - Xeiam的XChart标记符号

时间:2015-06-17 06:37:53

标签: java graph charts

我一直试图弄清楚是否可以为每个条形码/行标记设置确切的值。

目前的结果: enter image description here

期望的结果: enter image description here

1 个答案:

答案 0 :(得分:0)

在Xchart库中,使用批注获取每个条的数量。

CategoryChart chart = new CategoryChartBuilder()
            .yAxisTitle("ABC Title")
            .theme(Styler.ChartTheme.GGPlot2).build();

    //each stack count and total count of each bar
    chart.getStyler().setHasAnnotations(true);
    chart.getStyler().setShowTotalAnnotations(true);
    chart.getStyler().setAnnotationsPosition(1);