Package com.storedobject.chart
Class PolarCoordinate
java.lang.Object
com.storedobject.chart.AbstractPart
com.storedobject.chart.VisiblePart
com.storedobject.chart.CoordinateSystem
com.storedobject.chart.PolarCoordinate
- All Implemented Interfaces:
Component
,ComponentPart
,ComponentProperty
,HasData
,HasPolarProperty
,HasPosition
Representation of polar coordinate system with an angle axis and a radius axis.
- Author:
- Syam
-
Constructor Summary
ConstructorsConstructorDescriptionConstructor.PolarCoordinate
(RadiusAxis radiusAxis, AngleAxis angleAxis) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionfinal PolarProperty
getPolarProperty
(boolean create) Get the polar property.final void
setPolarProperty
(PolarProperty polarProperty) Set the polar property.void
validate()
This method is invoked bySOChart
to check if the component or part is valid or not.Methods inherited from class com.storedobject.chart.CoordinateSystem
add, addAxis, addParts, declareData, getAxis, getPosition, remove, removeAxis, setPosition
Methods inherited from class com.storedobject.chart.VisiblePart
encodeJSON, hide, show
Methods inherited from class com.storedobject.chart.AbstractPart
equals, getId, getLabelTag, getName, getSerial, getZ, hashCode, hasId, setSerial, setZ
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.storedobject.chart.ComponentPart
className, getId, getName, getRenderingIndex, getSerial, setName, setRenderingIndex, setSerial
Methods inherited from interface com.storedobject.chart.ComponentProperty
encodeJSON
Methods inherited from interface com.storedobject.chart.HasPolarProperty
setHoleRadius, setRadius
-
Constructor Details
-
PolarCoordinate
public PolarCoordinate()Constructor. -
PolarCoordinate
Constructor.- Parameters:
radiusAxis
- Radius axis.angleAxis
- Angle axis.
-
-
Method Details
-
validate
Description copied from interface:ComponentPart
This method is invoked bySOChart
to check if the component or part is valid or not.- Specified by:
validate
in interfaceComponentPart
- Overrides:
validate
in classCoordinateSystem
- Throws:
ChartException
- Raises exception if the component or part is not valid.
-
getPolarProperty
Description copied from interface:HasPolarProperty
Get the polar property. (Iftrue
is passed as the parameter, a new polar property will be created if not already exists).- Specified by:
getPolarProperty
in interfaceHasPolarProperty
- Parameters:
create
- Whether to create it or not.- Returns:
- Polar property.
-
setPolarProperty
Description copied from interface:HasPolarProperty
Set the polar property.- Specified by:
setPolarProperty
in interfaceHasPolarProperty
- Parameters:
polarProperty
- Polar property to set. It could benull
.
-