Class PolarAreaChartOptions
- java.lang.Object
-
- org.primefaces.model.charts.ChartOptions
-
- org.primefaces.model.charts.polar.PolarAreaChartOptions
-
- All Implemented Interfaces:
Serializable
public class PolarAreaChartOptions extends ChartOptions
Used to set options to PolarArea chart component.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PolarAreaChartOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RadialScalesgetScales()Gets the options of radial scalesNumbergetStartAngle()Gets the startAnglebooleanisAnimateRotate()Gets the animateRotatebooleanisAnimateScale()Gets the animateScalevoidsetAnimateRotate(boolean animateRotate)Sets the animateRotatevoidsetAnimateScale(boolean animateScale)Sets the animateScalevoidsetScales(RadialScales scales)Sets the radial scalesvoidsetStartAngle(Number startAngle)Sets the startAngle-
Methods inherited from class org.primefaces.model.charts.ChartOptions
getAnimation, getElements, getLegend, getTitle, getTooltip, setAnimation, setElements, setLegend, setTitle, setTooltip
-
-
-
-
Method Detail
-
getStartAngle
public Number getStartAngle()
Gets the startAngle- Returns:
- startAngle
-
setStartAngle
public void setStartAngle(Number startAngle)
Sets the startAngle- Parameters:
startAngle- Starting angle to draw arcs for the first item in a dataset.
-
isAnimateRotate
public boolean isAnimateRotate()
Gets the animateRotate- Returns:
- animateRotate
-
setAnimateRotate
public void setAnimateRotate(boolean animateRotate)
Sets the animateRotate- Parameters:
animateRotate- If true, the chart will animate in with a rotation animation.
-
isAnimateScale
public boolean isAnimateScale()
Gets the animateScale- Returns:
- animateScale
-
setAnimateScale
public void setAnimateScale(boolean animateScale)
Sets the animateScale- Parameters:
animateScale- If true, will animate scaling the chart from the center outwards.
-
getScales
public RadialScales getScales()
Gets the options of radial scales- Returns:
- scales
-
setScales
public void setScales(RadialScales scales)
Sets the radial scales- Parameters:
scales- TheRadialScalesobject
-
-