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 JRScatterPlot extends JRChartPlot { 41 42 45 public JRExpression getXAxisLabelExpression(); 46 47 50 public JRFont getXAxisLabelFont(); 51 52 55 public Color getXAxisLabelColor(); 56 57 60 public JRFont getXAxisTickLabelFont(); 61 62 65 public Color getXAxisTickLabelColor(); 66 67 70 public String getXAxisTickLabelMask(); 71 72 75 public Color getXAxisLineColor(); 76 77 80 public JRExpression getYAxisLabelExpression(); 81 82 85 public JRFont getYAxisLabelFont(); 86 87 90 public Color getYAxisLabelColor(); 91 92 95 public JRFont getYAxisTickLabelFont(); 96 97 100 public Color getYAxisTickLabelColor(); 101 102 105 public String getYAxisTickLabelMask(); 106 107 110 public Color getYAxisLineColor(); 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 |