我需要在条形图起始位置的左侧显示条形图x轴标签,如下面的图片所示。
我尝试了CategoryLabelPosition中可用的各种选项,通过使用这些选项,我只能像下面那样放置标签。但是我不能在实际栏的开始位置之前移动标签。
尝试以下代码:
CategoryLabelPositions p1 = new CategoryLabelPositions(new
CategoryLabelPosition(RectangleAnchor.BOTTOM_LEFT,
TextBlockAnchor.BOTTOM_LEFT));
CategoryLabelPosition left = new
CategoryLabelPosition(RectangleAnchor.BOTTOM_LEFT,
TextBlockAnchor.BOTTOM_LEFT);
final CategoryAxis cAxis = plot.getDomainAxis();cAxis.setCategoryLabelPositions(CategoryLabelPositions.replaceLeftPosition(p1, left));
您能给我个主意吗?