Package com.storedobject.chart
Class CoordinateSystem
java.lang.Object
com.storedobject.chart.AbstractPart
com.storedobject.chart.VisiblePart
com.storedobject.chart.CoordinateSystem
- All Implemented Interfaces:
Component
,ComponentPart
,ComponentProperty
,HasData
,HasPosition
- Direct Known Subclasses:
PolarCoordinate
,RadarCoordinate
,RectangularCoordinate
public abstract class CoordinateSystem
extends VisiblePart
implements Component, HasPosition, HasData
Abstract coordinate system. Most
Chart
s are plotted on a coordinate system except the charts
such as PieChart
, NightingaleRoseChart
etc. One or more compatible Chart
s can be plotted
on the same coordinate system.- Author:
- Syam
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Add charts to plot on this coordinate system.void
Add axes.void
Add parts of this component to the chart.void
declareData
(Set<AbstractDataProvider<?>> dataSet) Declare the data set owned by thisComponentPart
by adding it to theSet
provided.getAxis
(int index) Return an axis of this coordinate system.final Position
getPosition
(boolean create) Get the position of this on the chart display area.void
Remove charts to be removed from this coordinate system.void
removeAxis
(Axis... axes) Remove axes.final void
setPosition
(Position position) Set the position of this.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.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
-
Constructor Details
-
CoordinateSystem
public CoordinateSystem()
-
-
Method Details
-
add
Add charts to plot on this coordinate system.- Parameters:
charts
- Charts to be added.
-
remove
Remove charts to be removed from this coordinate system.- Parameters:
charts
- Charts to be removed.
-
addAxis
-
removeAxis
-
getAxis
Return an axis of this coordinate system.- Parameters:
index
- Index of the axis.- Returns:
- Axis at the given index.
-
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 classVisiblePart
- Throws:
ChartException
- Raises exception if the component or part is not valid.
-
addParts
Description copied from interface:Component
Add parts of this component to the chart. This will be invoked if the component was already added to the chart, and it is about to be rendered. -
declareData
Description copied from interface:HasData
Declare the data set owned by thisComponentPart
by adding it to theSet
provided.- Specified by:
declareData
in interfaceHasData
- Parameters:
dataSet
- Set to which all the data owned by thisComponentPart
needs to be added.
-
getPosition
Description copied from interface:HasPosition
Get the position of this on the chart display area. (Iftrue
is passed as the parameter, a new position will be created if not already exists).- Specified by:
getPosition
in interfaceHasPosition
- Parameters:
create
- Whether to create it or not.- Returns:
- Position.
-
setPosition
Description copied from interface:HasPosition
Set the position of this.- Specified by:
setPosition
in interfaceHasPosition
- Parameters:
position
- Position to set.
-