1 28 package net.sf.jasperreports.charts; 29 30 import net.sf.jasperreports.charts.JRDataRange; 31 import net.sf.jasperreports.charts.JRValueDisplay; 32 import net.sf.jasperreports.engine.JRChartPlot; 33 34 import java.awt.Color ; 35 import java.util.List ; 36 37 38 46 public interface JRMeterPlot extends JRChartPlot 47 { 48 52 public static final byte SHAPE_CHORD = 0; 53 54 58 public static final byte SHAPE_CIRCLE = 1; 59 60 64 public static final byte SHAPE_PIE = 2; 65 66 71 public JRDataRange getDataRange(); 72 73 80 public JRValueDisplay getValueDisplay(); 81 82 92 public byte getShape(); 93 94 101 public List getIntervals(); 102 103 108 public int getMeterAngle(); 109 110 116 public String getUnits(); 117 118 125 public double getTickInterval(); 126 127 132 public Color getMeterBackgroundColor(); 133 134 139 public Color getNeedleColor(); 140 141 146 public Color getTickColor(); 147 } 148 | Popular Tags |