在JFreeChart中,如何在水平条形图中更改类别标签的文本对齐方式

时间:2013-11-14 14:47:23

标签: java jfreechart

我正在使用以下演示文稿的图表:

enter image description here

¿如何使类别标签左对齐或对齐?实际上他们看起来居中,但这不是我要求的。

我正在使用的代码如下:

JFreeChart chart = getChart();
CategoryPlot plot = (CategoryPlot) chart.getPlot();

BarRenderer renderer = (BarRenderer) plot.getRenderer();
renderer.setDrawBarOutline(true);

CategoryAxis domainAxis = plot.getDomainAxis();
domainAxis.setMaximumCategoryLabelLines(5);

CategoryLabelPositions p = domainAxis.getCategoryLabelPositions();

CategoryLabelPosition left = new CategoryLabelPosition(
    RectangleAnchor.LEFT, TextBlockAnchor.CENTER_LEFT, 
    TextAnchor.CENTER_LEFT, 0.0,
    CategoryLabelWidthType.RANGE, 0.70f //Assign 70% of space for category labels
);

domainAxis.setCategoryLabelPositions(CategoryLabelPositions
        .replaceLeftPosition(p, left));

NumberAxis rangeAxis = (NumberAxis) plot.getRangeAxis();
rangeAxis.setStandardTickUnits(NumberAxis.createIntegerTickUnits());

BasicStroke stroke = new BasicStroke(1);
plot.setDomainGridlinePaint(Color.black);
plot.setDomainGridlineStroke(stroke);
plot.setRangeGridlinePaint(Color.black);
plot.setRangeGridlineStroke(stroke);

CategoryDataset cd = plot.getDataset();

setBarColors(renderer, plot, cd);

感谢。

1 个答案:

答案 0 :(得分:3)

类别标签是org.jfree.text.TextBlock的实例,它有setLineAlignment(HorizontalAlignment alignment)方法,但我没有看到通过CategoryPlot或CategoryAxis API获取它们的方法(有很多方法和演员,所以我不能告诉你这样的方法不存在,只是我没有找到一个)。但是,覆盖createLabel中的CategoryAxis方法以设置对齐方式。

(在获取域轴的代码之前):

plot.setDomainAxis(new CategoryAxis() {
    @Override
    protected TextBlock createLabel(Comparable category, float width, RectangleEdge edge, Graphics2D g2) {
        TextBlock label = TextUtilities.createTextBlock(category.toString(), getTickLabelFont(category), getTickLabelPaint(category), width, this.getMaximumCategoryLabelLines(), new G2TextMeasurer(g2));
        label.setLineAlignment(HorizontalAlignment.LEFT);
        return label;
    }
});

您可能希望向JFreeChart ForumsJFreeChart Feature Requests发布请求,因为David Gilbert将是明确回答此问题的最佳人选。