17 lines
540 B
Java
17 lines
540 B
Java
package net.sf.jasperreports.charts.fill;
|
|
|
|
import net.sf.jasperreports.charts.JRPiePlot;
|
|
import net.sf.jasperreports.engine.JRChartPlot;
|
|
import net.sf.jasperreports.engine.fill.JRFillChartPlot;
|
|
import net.sf.jasperreports.engine.fill.JRFillObjectFactory;
|
|
|
|
public class JRFillPiePlot extends JRFillChartPlot implements JRPiePlot {
|
|
public JRFillPiePlot(JRPiePlot piePlot, JRFillObjectFactory factory) {
|
|
super((JRChartPlot)piePlot, factory);
|
|
}
|
|
|
|
public boolean isCircular() {
|
|
return ((JRPiePlot)this.parent).isCircular();
|
|
}
|
|
}
|