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

19 lines
477 B
Java

package net.sf.jasperreports.charts;
import net.sf.jasperreports.engine.JRChartPlot;
import net.sf.jasperreports.engine.JRExpression;
public interface JRLinePlot extends JRChartPlot, JRCategoryAxisFormat, JRValueAxisFormat {
JRExpression getCategoryAxisLabelExpression();
JRExpression getValueAxisLabelExpression();
boolean isShowLines();
void setShowLines(boolean paramBoolean);
boolean isShowShapes();
void setShowShapes(boolean paramBoolean);
}