Package net.sf.jasperreports.charts
Interface JRPiePlot
-
- All Superinterfaces:
Cloneable
,JRChartPlot
,JRCloneable
- All Known Subinterfaces:
JRPie3DPlot
- All Known Implementing Classes:
JRBasePie3DPlot
,JRBasePiePlot
,JRDesignPie3DPlot
,JRDesignPiePlot
,JRFillPie3DPlot
,JRFillPiePlot
public interface JRPiePlot extends JRChartPlot
Type of plot used for rendering Pie charts.
Special settings that the Pie plot exposes are:- the
circular
flag - the label format
- the legend label format
- the item label
- the
showLabels
flag
- Author:
- Teodor Danciu (teodord@users.sourceforge.net)
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface net.sf.jasperreports.charts.JRChartPlot
JRChartPlot.JRSeriesColor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Boolean
getCircular()
JRItemLabel
getItemLabel()
String
getLabelFormat()
String
getLegendLabelFormat()
Boolean
getShowLabels()
-
Methods inherited from interface net.sf.jasperreports.charts.JRChartPlot
addSeriesColor, clearSeriesColors, clone, collectExpressions, getBackcolor, getBackgroundAlpha, getChart, getForegroundAlpha, getLabelRotation, getOrientation, getOwnBackcolor, getSeriesColors, setBackcolor, setBackgroundAlpha, setForegroundAlpha, setLabelRotation, setOrientation, setSeriesColors
-
Methods inherited from interface net.sf.jasperreports.engine.JRCloneable
clone
-
-
-
-
Method Detail
-
getCircular
Boolean getCircular()
- Returns:
- a flag that specifies a circular form for the pie
-
getLabelFormat
String getLabelFormat()
- Returns:
- the format pattern for labels
-
getLegendLabelFormat
String getLegendLabelFormat()
- Returns:
- the format pattern for legend labels
-
getItemLabel
JRItemLabel getItemLabel()
- Returns:
- a
JRItemLabel
object representing the item label
-
getShowLabels
Boolean getShowLabels()
- Returns:
- a flag that specifies whether labels are to be shown or not
-
-