1 28 package net.sf.jasperreports.charts.fill; 29 30 import java.awt.Color ; 31 32 import net.sf.jasperreports.charts.JRTimeSeriesPlot; 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 43 public class JRFillTimeSeriesPlot extends JRFillChartPlot implements JRTimeSeriesPlot { 44 45 public JRFillTimeSeriesPlot( JRTimeSeriesPlot plot, JRFillObjectFactory factory ){ 46 super( plot, factory ); 47 } 48 49 52 public JRExpression getTimeAxisLabelExpression() 53 { 54 return ((JRTimeSeriesPlot)parent).getTimeAxisLabelExpression(); 55 } 56 57 60 public JRFont getTimeAxisLabelFont() 61 { 62 return ((JRTimeSeriesPlot)parent).getTimeAxisLabelFont(); 63 } 64 65 68 public void setTimeAxisLabelFont(JRFont font) 69 { 70 } 71 72 75 public Color getTimeAxisLabelColor() 76 { 77 return ((JRTimeSeriesPlot)parent).getTimeAxisLabelColor(); 78 } 79 80 83 public void setTimeAxisLabelColor(Color color) 84 { 85 } 86 87 90 public JRFont getTimeAxisTickLabelFont() 91 { 92 return ((JRTimeSeriesPlot)parent).getTimeAxisTickLabelFont(); 93 } 94 95 98 public void setTimeAxisTickLabelFont(JRFont font) 99 { 100 } 101 102 105 public Color getTimeAxisTickLabelColor() 106 { 107 return ((JRTimeSeriesPlot)parent).getTimeAxisTickLabelColor(); 108 } 109 110 113 public void setTimeAxisTickLabelColor(Color color) 114 { 115 } 116 117 120 public String getTimeAxisTickLabelMask() 121 { 122 return ((JRTimeSeriesPlot)parent).getTimeAxisTickLabelMask(); 123 } 124 125 128 public void setTimeAxisTickLabelMask(String mask) 129 { 130 } 131 132 135 public Color getTimeAxisLineColor() 136 { 137 return ((JRTimeSeriesPlot)parent).getTimeAxisLineColor(); 138 } 139 140 143 public void setTimeAxisLineColor(Color color) 144 { 145 } 146 147 150 public JRExpression getValueAxisLabelExpression() 151 { 152 return ((JRTimeSeriesPlot)parent).getValueAxisLabelExpression(); 153 } 154 155 158 public JRFont getValueAxisLabelFont() 159 { 160 return ((JRTimeSeriesPlot)parent).getValueAxisLabelFont(); 161 } 162 163 166 public void setValueAxisLabelFont(JRFont font) 167 { 168 } 169 170 173 public Color getValueAxisLabelColor() 174 { 175 return ((JRTimeSeriesPlot)parent).getValueAxisLabelColor(); 176 } 177 178 181 public void setValueAxisLabelColor(Color color) 182 { 183 } 184 185 188 public JRFont getValueAxisTickLabelFont() 189 { 190 return ((JRTimeSeriesPlot)parent).getValueAxisTickLabelFont(); 191 } 192 193 196 public void setValueAxisTickLabelFont(JRFont font) 197 { 198 } 199 200 203 public Color getValueAxisTickLabelColor() 204 { 205 return ((JRTimeSeriesPlot)parent).getValueAxisTickLabelColor(); 206 } 207 208 211 public void setValueAxisTickLabelColor(Color color) 212 { 213 } 214 215 218 public String getValueAxisTickLabelMask() 219 { 220 return ((JRTimeSeriesPlot)parent).getValueAxisTickLabelMask(); 221 } 222 223 226 public void setValueAxisTickLabelMask(String mask) 227 { 228 } 229 230 233 public Color getValueAxisLineColor() 234 { 235 return ((JRTimeSeriesPlot)parent).getValueAxisLineColor(); 236 } 237 238 241 public void setValueAxisLineColor(Color color) 242 { 243 } 244 245 public boolean isShowLines(){ 246 return ((JRTimeSeriesPlot)parent).isShowLines(); 247 } 248 249 public void setShowLines(){ 250 } 251 252 public boolean isShowShapes(){ 253 return ((JRTimeSeriesPlot)parent).isShowShapes(); 254 } 255 256 public void setShowShapes(){ 257 } 258 } 259 | Popular Tags |