public class PiePlot extends AbstractPiePlot {
private static final long serialVersionUID = Entity.SERIAL_VERSION_UID;
public void transform(DynamicJasperDesign design, JRChartPlot plot, String name) {
super.transform(design, plot, name);
JRDesignPiePlot piePlot = (JRDesignPiePlot) plot;
if (getCircular() != null)
piePlot.setCircular(getCircular());
if (getLabelFormat() != null)
piePlot.setLabelFormat(getLabelFormat());
if (getLegendLabelFormat() != null)
piePlot.setLegendLabelFormat(getLegendLabelFormat());
}