Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
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 JRBarPlot extends JRChartPlot 42 { 43 44 47 public JRExpression getCategoryAxisLabelExpression(); 48 49 52 public JRFont getCategoryAxisLabelFont(); 53 54 57 public Color getCategoryAxisLabelColor(); 58 59 62 public JRFont getCategoryAxisTickLabelFont(); 63 64 67 public Color getCategoryAxisTickLabelColor(); 68 69 72 public String getCategoryAxisTickLabelMask(); 73 74 77 public Color getCategoryAxisLineColor(); 78 79 82 public JRExpression getValueAxisLabelExpression(); 83 84 87 public JRFont getValueAxisLabelFont(); 88 89 92 public Color getValueAxisLabelColor(); 93 94 97 public JRFont getValueAxisTickLabelFont(); 98 99 102 public Color getValueAxisTickLabelColor(); 103 104 107 public String getValueAxisTickLabelMask(); 108 109 112 public Color getValueAxisLineColor(); 113 114 117 public boolean isShowTickMarks(); 118 119 122 public void setShowTickMarks(boolean isShowTickMarks); 123 124 127 public boolean isShowTickLabels(); 128 129 132 public void setShowTickLabels(boolean isShowTickLabels); 133 134 137 public boolean isShowLabels(); 138 139 142 public void setShowLabels( boolean isShowLabels ); 143 144 } 145
| Popular Tags
|