first commit
This commit is contained in:
22
hrmsEjb/net/sf/jasperreports/charts/JRBarPlot.java
Normal file
22
hrmsEjb/net/sf/jasperreports/charts/JRBarPlot.java
Normal file
@@ -0,0 +1,22 @@
|
||||
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);
|
||||
}
|
Reference in New Issue
Block a user