1 28 package net.sf.jasperreports.engine; 29 30 import java.awt.Color ; 31 import java.util.SortedSet ; 32 33 import org.jfree.chart.plot.PlotOrientation; 34 35 36 43 public interface JRChartPlot 44 { 45 46 47 50 public Color getBackcolor(); 51 52 55 public void setBackcolor(Color backcolor); 56 57 58 61 public PlotOrientation getOrientation(); 62 63 66 public void setOrientation(PlotOrientation orientation); 67 68 73 public float getBackgroundAlpha(); 74 75 79 public void setBackgroundAlpha(float backgroundAlpha); 80 81 86 public float getForegroundAlpha(); 87 88 92 public void setForegroundAlpha(float foregroundAlpha); 93 94 99 public double getLabelRotation(); 100 101 106 public void setLabelRotation(double labelRotation); 107 108 112 public SortedSet getSeriesColors(); 113 114 117 public void clearSeriesColors(); 118 119 122 public void addSeriesColor(JRSeriesColor seriesColor); 123 124 127 public void collectExpressions(JRExpressionCollector collector); 128 129 public interface JRSeriesColor 130 { 131 136 public int getSeriesOrder(); 137 138 141 public Color getColor(); 142 } 143 } 144 | Popular Tags |