从JFreeChart中删除一个饼图部分标签

时间:2014-03-26 17:22:05

标签: java charts jfreechart

如何从JFreeChart饼图中删除一个标签,但保留其余标签?

这是我的饼图的简化版本。我想要除“休眠”类别之外的所有饼图切片的标签。它更像是一个占位符。

DefaultPieDataset dataset = new DefaultPieDataset();
    dataset.setValue("Cat1", 2);
    dataset.setValue("Cat2", 4);
    dataset.setValue("Cat3", 3);
    dataset.setValue("dormant", 2);

JFreeChart chart = ChartFactory.createPieChart3D(
    null,
    dataset,
    false, // legend?
    true, // tooltips?
    false // URLs?
    );

PiePlot3D plot = (PiePlot3D) chart.getPlot();

//CREATE LABELS, but I don't want any for the "dormant" category
StandardPieSectionLabelGenerator labelGen = new StandardPieSectionLabelGenerator( "{0} ({2})", new DecimalFormat("0"), new DecimalFormat("0%"));
    plot.setLabelGenerator(labelGen);

1 个答案:

答案 0 :(得分:2)

如果标签生成器为标签返回null,则饼图不会显示该部分的标签。所以你可以像这样实现你的结果:

    StandardPieSectionLabelGenerator labelGen = new StandardPieSectionLabelGenerator(
            "{0} ({2})", new DecimalFormat("0"), new DecimalFormat("0%")) {

        @Override
        public String generateSectionLabel(PieDataset dataset, Comparable key) {
            if (key.equals("dormant")) {
                return null;
            }
            return super.generateSectionLabel(dataset, key);
        }

    };