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 JRTimeSeriesPlot extends JRChartPlot { 41 42 45 public JRExpression getTimeAxisLabelExpression(); 46 47 50 public JRFont getTimeAxisLabelFont(); 51 52 55 public Color getTimeAxisLabelColor(); 56 57 60 public JRFont getTimeAxisTickLabelFont(); 61 62 65 public Color getTimeAxisTickLabelColor(); 66 67 70 public String getTimeAxisTickLabelMask(); 71 72 75 public Color getTimeAxisLineColor(); 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 boolean isShowShapes(); 121 122 } 123 | Popular Tags |