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 40 public interface JRLinePlot extends JRChartPlot { 41 42 45 public JRExpression getCategoryAxisLabelExpression(); 46 47 50 public JRFont getCategoryAxisLabelFont(); 51 52 55 public Color getCategoryAxisLabelColor(); 56 57 60 public JRFont getCategoryAxisTickLabelFont(); 61 62 65 public Color getCategoryAxisTickLabelColor(); 66 67 70 public String getCategoryAxisTickLabelMask(); 71 72 75 public Color getCategoryAxisLineColor(); 76 77 80 public JRExpression getValueAxisLabelExpression(); 81 82 85 public JRFont getValueAxisLabelFont(); 86 87 90 public Color getValueAxisLabelColor(); 91 92 95 public JRFont getValueAxisTickLabelFont(); 96 97 100 public Color getValueAxisTickLabelColor(); 101 102 105 public String getValueAxisTickLabelMask(); 106 107 110 public Color getValueAxisLineColor(); 111 112 115 public boolean isShowLines(); 116 117 120 public void setShowLines(boolean isShowLines); 121 122 125 public boolean isShowShapes(); 126 127 130 public void setShowShapes(boolean isShowShapes); 131 132 } 133
| Popular Tags
|