我一直试图弄清楚是否可以为每个条形码/行标记设置确切的值。
目前的结果:
期望的结果:
答案 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);