1 28 package net.sf.jasperreports.charts.fill; 29 30 import java.awt.Color ; 31 32 import net.sf.jasperreports.charts.JRBar3DPlot; 33 import net.sf.jasperreports.engine.JRExpression; 34 import net.sf.jasperreports.engine.JRFont; 35 import net.sf.jasperreports.engine.fill.JRFillChartPlot; 36 import net.sf.jasperreports.engine.fill.JRFillObjectFactory; 37 38 42 public class JRFillBar3DPlot extends JRFillChartPlot implements JRBar3DPlot { 43 44 47 public JRFillBar3DPlot( JRBar3DPlot barPlot, JRFillObjectFactory factory ){ 48 super( barPlot, factory ); 49 } 50 51 54 public JRExpression getCategoryAxisLabelExpression() 55 { 56 return ((JRBar3DPlot)parent).getCategoryAxisLabelExpression(); 57 } 58 59 62 public JRFont getCategoryAxisLabelFont() 63 { 64 return ((JRBar3DPlot)parent).getCategoryAxisLabelFont(); 65 } 66 67 70 public void setCategoryAxisLabelFont(JRFont font) 71 { 72 } 73 74 77 public Color getCategoryAxisLabelColor() 78 { 79 return ((JRBar3DPlot)parent).getCategoryAxisLabelColor(); 80 } 81 82 85 public void setCategoryAxisLabelColor(Color color) 86 { 87 } 88 89 92 public JRFont getCategoryAxisTickLabelFont() 93 { 94 return ((JRBar3DPlot)parent).getCategoryAxisTickLabelFont(); 95 } 96 97 100 public void setCategoryAxisTickLabelFont(JRFont font) 101 { 102 } 103 104 107 public Color getCategoryAxisTickLabelColor() 108 { 109 return ((JRBar3DPlot)parent).getCategoryAxisTickLabelColor(); 110 } 111 112 115 public void setCategoryAxisTickLabelColor(Color color) 116 { 117 } 118 119 122 public String getCategoryAxisTickLabelMask() 123 { 124 return ((JRBar3DPlot)parent).getCategoryAxisTickLabelMask(); 125 } 126 127 130 public void setCategoryAxisTickLabelMask(String mask) 131 { 132 } 133 134 137 public Color getCategoryAxisLineColor() 138 { 139 return ((JRBar3DPlot)parent).getCategoryAxisLineColor(); 140 } 141 142 145 public void setCategoryAxisLineColor(Color color) 146 { 147 } 148 149 152 public JRExpression getValueAxisLabelExpression() 153 { 154 return ((JRBar3DPlot)parent).getValueAxisLabelExpression(); 155 } 156 157 160 public JRFont getValueAxisLabelFont() 161 { 162 return ((JRBar3DPlot)parent).getValueAxisLabelFont(); 163 } 164 165 168 public void setValueAxisLabelFont(JRFont font) 169 { 170 } 171 172 175 public Color getValueAxisLabelColor() 176 { 177 return ((JRBar3DPlot)parent).getValueAxisLabelColor(); 178 } 179 180 183 public void setValueAxisLabelColor(Color color) 184 { 185 } 186 187 190 public JRFont getValueAxisTickLabelFont() 191 { 192 return ((JRBar3DPlot)parent).getValueAxisTickLabelFont(); 193 } 194 195 198 public void setValueAxisTickLabelFont(JRFont font) 199 { 200 } 201 202 205 public Color getValueAxisTickLabelColor() 206 { 207 return ((JRBar3DPlot)parent).getValueAxisTickLabelColor(); 208 } 209 210 213 public void setValueAxisTickLabelColor(Color color) 214 { 215 } 216 217 220 public String getValueAxisTickLabelMask() 221 { 222 return ((JRBar3DPlot)parent).getValueAxisTickLabelMask(); 223 } 224 225 228 public void setValueAxisTickLabelMask(String mask) 229 { 230 } 231 232 235 public Color getValueAxisLineColor() 236 { 237 return ((JRBar3DPlot)parent).getValueAxisLineColor(); 238 } 239 240 243 public void setValueAxisLineColor(Color color) 244 { 245 } 246 247 250 public double getXOffset(){ 251 return ((JRBar3DPlot)parent).getXOffset(); 252 } 253 254 257 public void setXOffset( double xOffset ){ 258 } 259 260 263 public double getYOffset(){ 264 return ((JRBar3DPlot)parent).getYOffset(); 265 } 266 267 270 public void setYOffset( double yOffset ){ 271 } 272 273 276 public boolean isShowLabels(){ 277 return ((JRBar3DPlot)parent).isShowLabels(); 278 } 279 280 283 public void setShowLabels( boolean isShowLabels ){ 284 } 285 } 286 | Popular Tags |