25 lines
497 B
Java
25 lines
497 B
Java
package net.sf.jasperreports.charts;
|
|
|
|
import java.awt.Color;
|
|
import net.sf.jasperreports.engine.JRFont;
|
|
|
|
public interface JRValueAxisFormat {
|
|
JRFont getValueAxisLabelFont();
|
|
|
|
Color getValueAxisLabelColor();
|
|
|
|
Color getOwnValueAxisLabelColor();
|
|
|
|
JRFont getValueAxisTickLabelFont();
|
|
|
|
Color getValueAxisTickLabelColor();
|
|
|
|
Color getOwnValueAxisTickLabelColor();
|
|
|
|
String getValueAxisTickLabelMask();
|
|
|
|
Color getValueAxisLineColor();
|
|
|
|
Color getOwnValueAxisLineColor();
|
|
}
|