1 28 package net.sf.jasperreports.charts; 29 30 import java.awt.Color ; 31 32 import net.sf.jasperreports.engine.JRChartPlot; 33 import net.sf.jasperreports.engine.JRExpression; 34 import net.sf.jasperreports.engine.JRFont; 35 36 37 41 public interface JRBar3DPlot extends JRChartPlot { 42 43 46 public JRExpression getCategoryAxisLabelExpression(); 47 48 51 public JRFont getCategoryAxisLabelFont(); 52 53 56 public Color getCategoryAxisLabelColor(); 57 58 61 public JRFont getCategoryAxisTickLabelFont(); 62 63 66 public Color getCategoryAxisTickLabelColor(); 67 68 71 public String getCategoryAxisTickLabelMask(); 72 73 76 public Color getCategoryAxisLineColor(); 77 78 81 public JRExpression getValueAxisLabelExpression(); 82 83 86 public JRFont getValueAxisLabelFont(); 87 88 91 public Color getValueAxisLabelColor(); 92 93 96 public JRFont getValueAxisTickLabelFont(); 97 98 101 public Color getValueAxisTickLabelColor(); 102 103 106 public String getValueAxisTickLabelMask(); 107 108 111 public Color getValueAxisLineColor(); 112 113 116 public double getXOffset(); 117 118 121 public void setXOffset(double xOffset); 122 123 126 public double getYOffset(); 127 128 131 public void setYOffset(double yOffset); 132 133 136 public boolean isShowLabels(); 137 138 141 public void setShowLabels(boolean isShowLabels); 142 143 } 144 | Popular Tags |