JfreeBarchart X轴标签位置

时间:2018-10-27 14:31:55

标签: java gwt charts bar-chart jfreechart

我需要在条形图起始位置的左侧显示条形图x轴标签,如下面的图片所示。

我尝试了CategoryLabelPosition中可用的各种选项,通过使用这些选项,我只能像下面那样放置标签。但是我不能在实际栏的开始位置之前移动标签。

enter image description here

尝试以下代码:

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

您能给我个主意吗?

0 个答案:

没有答案