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