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

23 lines
568 B
Java

package net.sf.jasperreports.charts;
import net.sf.jasperreports.engine.JRChartPlot;
import net.sf.jasperreports.engine.JRExpression;
public interface JRBarPlot extends JRChartPlot, JRCategoryAxisFormat, JRValueAxisFormat {
JRExpression getCategoryAxisLabelExpression();
JRExpression getValueAxisLabelExpression();
boolean isShowTickMarks();
void setShowTickMarks(boolean paramBoolean);
boolean isShowTickLabels();
void setShowTickLabels(boolean paramBoolean);
boolean isShowLabels();
void setShowLabels(boolean paramBoolean);
}