如何从jfree图表中删除切片部分标记

时间:2017-03-09 12:12:24

标签: java java-ee charts jfreechart jfreereport

我在报告中使用jfree图表。我想从饼图中删除切片部分: enter image description here

另外,我想让它以切片值为中心,并在我目前正在使用的脚本下面提到:

import java.awt.Color;
import org.jfree.chart.plot.PiePlot3D;
import org.jfree.chart.plot.PiePlot;

PiePlot plot = (PiePlot) chart.getPlot();
plot.setSimpleLabels(true);
plot.setOutlineVisible(false);
plot.setOutlinePaint(new Color(0, 0, 0, 0));
plot.setLabelShadowPaint(new Color(0, 0, 0, 0));
plot.setLabelBackgroundPaint(new Color(0, 0, 0, 0));
plot.setLabelOutlinePaint(new Color(0, 0, 0, 0)); 

任何人都可以建议我们如何做...

1 个答案:

答案 0 :(得分:2)

使用plot.setSeparatorsVisible(false)解决问题。