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 37 41 public interface JRCandlestickPlot extends JRChartPlot 42 { 43 44 47 public JRExpression getTimeAxisLabelExpression(); 48 49 52 public JRFont getTimeAxisLabelFont(); 53 54 57 public Color getTimeAxisLabelColor(); 58 59 62 public JRFont getTimeAxisTickLabelFont(); 63 64 67 public Color getTimeAxisTickLabelColor(); 68 69 72 public String getTimeAxisTickLabelMask(); 73 74 77 public Color getTimeAxisLineColor(); 78 79 82 public JRExpression getValueAxisLabelExpression(); 83 84 87 public JRFont getValueAxisLabelFont(); 88 89 92 public Color getValueAxisLabelColor(); 93 94 97 public JRFont getValueAxisTickLabelFont(); 98 99 102 public Color getValueAxisTickLabelColor(); 103 104 107 public String getValueAxisTickLabelMask(); 108 109 112 public Color getValueAxisLineColor(); 113 114 117 public boolean isShowVolume(); 118 119 } 120 | Popular Tags |