70 lines
1.4 KiB
Java
70 lines
1.4 KiB
Java
package net.sf.jasperreports.charts.util;
|
|
|
|
import java.awt.Color;
|
|
import java.io.Serializable;
|
|
import net.sf.jasperreports.engine.JRFont;
|
|
|
|
public class JRAxisFormat implements Serializable {
|
|
private static final long serialVersionUID = 10200L;
|
|
|
|
protected Color labelColor = null;
|
|
|
|
protected JRFont labelFont = null;
|
|
|
|
protected Color tickLabelColor = null;
|
|
|
|
protected JRFont tickLabelFont = null;
|
|
|
|
protected String tickLabelMask = null;
|
|
|
|
protected Color lineColor = null;
|
|
|
|
public Color getLabelColor() {
|
|
return this.labelColor;
|
|
}
|
|
|
|
public void setLabelColor(Color labelColor) {
|
|
this.labelColor = labelColor;
|
|
}
|
|
|
|
public JRFont getLabelFont() {
|
|
return this.labelFont;
|
|
}
|
|
|
|
public void setLabelFont(JRFont labelFont) {
|
|
this.labelFont = labelFont;
|
|
}
|
|
|
|
public Color getLineColor() {
|
|
return this.lineColor;
|
|
}
|
|
|
|
public void setLineColor(Color lineColor) {
|
|
this.lineColor = lineColor;
|
|
}
|
|
|
|
public Color getTickLabelColor() {
|
|
return this.tickLabelColor;
|
|
}
|
|
|
|
public void setTickLabelColor(Color tickLabelColor) {
|
|
this.tickLabelColor = tickLabelColor;
|
|
}
|
|
|
|
public JRFont getTickLabelFont() {
|
|
return this.tickLabelFont;
|
|
}
|
|
|
|
public void setTickLabelFont(JRFont tickLabelFont) {
|
|
this.tickLabelFont = tickLabelFont;
|
|
}
|
|
|
|
public String getTickLabelMask() {
|
|
return this.tickLabelMask;
|
|
}
|
|
|
|
public void setTickLabelMask(String mask) {
|
|
this.tickLabelMask = mask;
|
|
}
|
|
}
|