Package net.sf.jasperreports.charts
Interface JRPie3DPlot
-
- All Superinterfaces:
Cloneable,JRChartPlot,JRCloneable
- All Known Implementing Classes:
JRBasePie3DPlot,JRDesignPie3DPlot,JRFillPie3DPlot
public interface JRPie3DPlot extends JRChartPlot
Type of plot used for rendering Pie 3D charts.
Special settings that the Pie 3D plot exposes are:- the
circularflag - the depth factor
- the label format
- the legend label format
- the item label
- the
showLabelsflag
- Author:
- Teodor Danciu (teodord@users.sourceforge.net)
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface net.sf.jasperreports.engine.JRChartPlot
JRChartPlot.JRSeriesColor
-
-
Field Summary
Fields Modifier and Type Field Description static doubleDEPTH_FACTOR_DEFAULT
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BooleangetCircular()DoublegetDepthFactorDouble()JRItemLabelgetItemLabel()StringgetLabelFormat()StringgetLegendLabelFormat()BooleangetShowLabels()-
Methods inherited from interface net.sf.jasperreports.engine.JRChartPlot
addSeriesColor, clearSeriesColors, clone, collectExpressions, getBackcolor, getBackgroundAlphaFloat, getChart, getForegroundAlphaFloat, getLabelRotationDouble, getOrientationValue, getOwnBackcolor, getSeriesColors, setBackcolor, setBackgroundAlpha, setForegroundAlpha, setLabelRotation, setOrientation, setSeriesColors
-
Methods inherited from interface net.sf.jasperreports.engine.JRCloneable
clone
-
-
-
-
Field Detail
-
DEPTH_FACTOR_DEFAULT
static final double DEPTH_FACTOR_DEFAULT
- See Also:
- Constant Field Values
-
-
Method Detail
-
getDepthFactorDouble
Double getDepthFactorDouble()
- Returns:
- a numeric value ranging from 0 to 1 that represents the depth of the pie as a percentage of the height of the plot area.
-
getCircular
Boolean getCircular()
- Returns:
- a flag that specifies a circular form for the 3D 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
JRItemLabelobject representing the item label
-
getShowLabels
Boolean getShowLabels()
- Returns:
- a flag that specifies whether labels are to be shown or not
-
-