first commit

This commit is contained in:
2025-07-28 13:56:49 +05:30
commit e9eb805edb
3438 changed files with 520990 additions and 0 deletions

View File

@@ -0,0 +1,69 @@
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;
}
}