Files
HRMS/hrmsEjb/net/sf/jasperreports/charts/JRValueAxisFormat.java
2025-07-28 13:56:49 +05:30

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();
}