1 32 33 package it.businesslogic.ireport.chart; 34 35 39 public class Pie3DPlot extends Plot{ 40 41 private double depthFactor = 0.2; 42 43 44 public Pie3DPlot() { 45 46 } 47 48 public double getDepthFactor() { 49 return depthFactor; 50 } 51 52 public void setDepthFactor(double depthFactor) { 53 this.depthFactor = depthFactor; 54 } 55 56 public Plot cloneMe() 57 { 58 Pie3DPlot obj = new Pie3DPlot(); 59 copyBasePlot(obj); 60 obj.setDepthFactor( this.getDepthFactor()); 61 62 return obj; 63 } 64 65 } 66 | Popular Tags |