Package com.storedobject.chart
Class RadarCoordinate
java.lang.Object
com.storedobject.chart.AbstractPart
com.storedobject.chart.VisiblePart
com.storedobject.chart.CoordinateSystem
com.storedobject.chart.RadarCoordinate
- All Implemented Interfaces:
Component
,ComponentPart
,ComponentProperty
,HasData
,HasPolarProperty
,HasPosition
Radar coordinate is used by
RadarChart
. Each of its leg (radial axis) can be labelled (indicators)
by CategoryData
.- Author:
- Syam
-
Constructor Summary
ConstructorsConstructorDescriptionConstructor.RadarCoordinate
(CategoryDataProvider axisIndicators) Construct with the given set of axis indicators.RadarCoordinate
(RadarAxis axis) Constructor.RadarCoordinate
(RadarAxis axis, CategoryDataProvider axisIndicators) Construct with the given set of axis indicators. -
Method Summary
Modifier and TypeMethodDescriptionvoid
Add axes.void
Encode the JSON string with the properties of this.getAxis()
Get the current axis indicators.final AbstractColor
getColor()
Get the color of the indicator.final PolarProperty
getPolarProperty
(boolean create) Get the polar property.int
Get the starting angle.final boolean
Is the shape circular?void
void
setAxisIndicators
(CategoryDataProvider axisIndicators) Set axis indicators.void
setCircular
(boolean circular) Set the shape as circular.void
setColor
(AbstractColor color) Set color of the indicator.final void
setPolarProperty
(PolarProperty polarProperty) Set the polar property.void
setStartingAngle
(int startingAngle) Set the starting angle.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, addParts, declareData, getAxis, getPosition, remove, removeAxis, setPosition
Methods inherited from class com.storedobject.chart.VisiblePart
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.HasPolarProperty
setHoleRadius, setRadius
-
Constructor Details
-
RadarCoordinate
public RadarCoordinate()Constructor. Axis indicators can be set later. A defaultRadarAxis
will be created. -
RadarCoordinate
Construct with the given set of axis indicators. A defaultRadarAxis
will be created.- Parameters:
axisIndicators
- Axis indicators to set.
-
RadarCoordinate
Constructor. Axis indicators can be set later.- Parameters:
axis
- Radar axis.
-
RadarCoordinate
Construct with the given set of axis indicators.- Parameters:
axis
- Radar axis.axisIndicators
- Axis indicators to set.
-
-
Method Details
-
addAxis
Description copied from class:CoordinateSystem
Add axes.- Overrides:
addAxis
in classCoordinateSystem
- Parameters:
axes
- Axes to add.
-
setAxis
-
getAxis
-
setAxisIndicators
Set axis indicators.- Parameters:
axisIndicators
- Axis indicators to set.
-
getAxisIndicators
Get the current axis indicators.- Returns:
- Axis indicators.
-
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.
-
encodeJSON
Description copied from interface:ComponentProperty
Encode the JSON string with the properties of this.- Specified by:
encodeJSON
in interfaceComponentProperty
- Overrides:
encodeJSON
in classVisiblePart
- Parameters:
sb
- Encoded JSON string to be appended to this.
-
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
.
-
getStartingAngle
public int getStartingAngle()Get the starting angle.- Returns:
- Angle in degrees.
-
setStartingAngle
public void setStartingAngle(int startingAngle) Set the starting angle.- Parameters:
startingAngle
- Angle in degrees.
-
getColor
-
setColor
-
setCircular
public void setCircular(boolean circular) Set the shape as circular.- Parameters:
circular
- True/false.
-
isCircular
public final boolean isCircular()Is the shape circular?- Returns:
- True/false.
-