Package net.sf.jasperreports.charts
Interface JRCommonLinePlot
-
- All Known Subinterfaces:
JRLinePlot
,JRScatterPlot
,JRTimeSeriesPlot
- All Known Implementing Classes:
JRBaseLinePlot
,JRBaseScatterPlot
,JRBaseTimeSeriesPlot
,JRDesignLinePlot
,JRDesignScatterPlot
,JRDesignTimeSeriesPlot
,JRFillLinePlot
,JRFillScatterPlot
,JRFillTimeSeriesPlot
public interface JRCommonLinePlot
Type of the plot used to render Line, XY Line and Scatter charts.
It exposes the following specific settings:- the show lines flag
- the show shapes flag
- Author:
- Teodor Danciu (teodord@users.sourceforge.net)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Boolean
getShowLines()
Boolean
getShowShapes()
void
setShowLines(Boolean isShowLines)
Sets the show lines flagvoid
setShowShapes(Boolean isShowShapes)
Sets the show shapes flag
-
-
-
Method Detail
-
getShowLines
Boolean getShowLines()
- Returns:
- the show lines flag
-
setShowLines
void setShowLines(Boolean isShowLines)
Sets the show lines flag- Parameters:
isShowLines
- the show lines flag
-
getShowShapes
Boolean getShowShapes()
- Returns:
- the show shapes flag
-
setShowShapes
void setShowShapes(Boolean isShowShapes)
Sets the show shapes flag- Parameters:
isShowShapes
- the show shapes flag
-
-