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 JRAreaPlot extends JRChartPlot { 41 42 public JRExpression getCategoryAxisLabelExpression(); 43 44 47 public JRFont getCategoryAxisLabelFont(); 48 49 52 public Color getCategoryAxisLabelColor(); 53 54 57 public JRFont getCategoryAxisTickLabelFont(); 58 59 62 public Color getCategoryAxisTickLabelColor(); 63 64 67 public String getCategoryAxisTickLabelMask(); 68 69 72 public Color getCategoryAxisLineColor(); 73 74 77 public JRExpression getValueAxisLabelExpression(); 78 79 82 public JRFont getValueAxisLabelFont(); 83 84 87 public Color getValueAxisLabelColor(); 88 89 92 public JRFont getValueAxisTickLabelFont(); 93 94 97 public Color getValueAxisTickLabelColor(); 98 99 102 public String getValueAxisTickLabelMask(); 103 104 107 public Color getValueAxisLineColor(); 108 } 109 | Popular Tags |