12 lines
255 B
Java
12 lines
255 B
Java
package net.sf.jasperreports.charts;
|
|
|
|
import net.sf.jasperreports.engine.JRChartPlot;
|
|
|
|
public interface JRPie3DPlot extends JRChartPlot {
|
|
public static final double DEPTH_FACTOR_DEFAULT = 0.2D;
|
|
|
|
double getDepthFactor();
|
|
|
|
boolean isCircular();
|
|
}
|