Package com.storedobject.chart
Class VisualMap
java.lang.Object
com.storedobject.chart.VisualMap
- All Implemented Interfaces:
Component
,ComponentPart
,ComponentProperty
,HasPosition
Define features to visually highlight portions of the chart.
Note: Beta version, not fully tested and the API is not yet finalized.
- Author:
- Syam
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Encode the JSON string with the properties of this.final Chart
getChart()
Get the chart for which this visual map is used.long
getId()
Each part should have a unique Id.final Number
getMax()
Get the maximum value to be used by this map.final Number
getMin()
Get the minimum value to be used by this map.final Position
getPosition
(boolean create) Get the position of this on the chart display area.int
Get the current serial number (Serial number used internal purposes only).final boolean
Is the values calculable?final boolean
Is the rendering continuous?boolean
Is the orientation vertical?void
setCalculable
(boolean calculable) Set that the value is calculable or not.void
Set the chart for which this visual map is used.void
setContinuous
(boolean continuous) Set the rendering continuous.void
Set the maximum value to be used by this map when rendering.void
Set the minimum value to be used by this map when rendering.void
setPosition
(Position position) Set the position of this.void
setSerial
(int serial) Set a serial number (Serial number used internal purposes only).void
setVertical
(boolean vertical) Set vertical orientation for the visual map.void
validate()
This method is invoked bySOChart
to check if the component or part is valid or not.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.storedobject.chart.ComponentPart
className, getName, getRenderingIndex, setName, setRenderingIndex
-
Constructor Details
-
VisualMap
public VisualMap()Constructor. -
VisualMap
Constructor.- Parameters:
chart
- Chart for which this map will be used.
-
-
Method Details
-
getId
public long getId()Description copied from interface:ComponentPart
Each part should have a unique Id. (It can be a final variable and can be set by callingID.newID()
.- Specified by:
getId
in interfaceComponentPart
- Returns:
- Unique Id.
-
setSerial
public void setSerial(int serial) Description copied from interface:ComponentPart
Set a serial number (Serial number used internal purposes only). The implementation of this method must be in such a way that the serial number set here must be returned by theComponentPart.getSerial()
method.- Specified by:
setSerial
in interfaceComponentPart
- Parameters:
serial
- Serial number to set.
-
getSerial
public int getSerial()Description copied from interface:ComponentPart
Get the current serial number (Serial number used internal purposes only). The serial number set by theComponentPart.setSerial(int)
method should be returned by this method.- Specified by:
getSerial
in interfaceComponentPart
- Returns:
- Current serial number.
-
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
- 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
- Parameters:
sb
- Encoded JSON string to be appended to this.
-
isContinuous
public final boolean isContinuous()Is the rendering continuous?- Returns:
- True/false.
-
setContinuous
public void setContinuous(boolean continuous) Set the rendering continuous. (By default, it is continuous).- Parameters:
continuous
- True/false.
-
isCalculable
public final boolean isCalculable()Is the values calculable?- Returns:
- True/false.
-
setCalculable
public void setCalculable(boolean calculable) Set that the value is calculable or not.- Parameters:
calculable
- True/false.
-
getChart
Get the chart for which this visual map is used. (It could be null and in that case, it will be used for all the charts).- Returns:
- Chart.
-
setChart
Set the chart for which this visual map is used. (If it is null, it will be used for all the charts).- Parameters:
chart
- Chart.
-
isVertical
public boolean isVertical()Is the orientation vertical?- Returns:
- True/false.
-
setVertical
public void setVertical(boolean vertical) Set vertical orientation for the visual map. (By default, it is horizontal).- Parameters:
vertical
- True/false.
-
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.
-
getMin
Get the minimum value to be used by this map.Note: This will return whatever value set via
setMin(Number)
. If not set, it will try to determine this value from the associated chart if possible when rendering occurs.- Returns:
- Minimum value.
-
setMin
Set the minimum value to be used by this map when rendering. If a non-null value is set via this method, it will be used while rendering and no attempt is made to determine it from the associated chart if any.- Parameters:
min
- Value to set.
-
getMax
Get the maximum value to be used by this map.Note: This will return whatever value set via
setMax(Number)
. If not set, it will try to determine this value from the associated chart if possible when rendering occurs.- Returns:
- Maximum value.
-
setMax
Set the maximum value to be used by this map when rendering. If a non-null value is set via this method, it will be used while rendering and no attempt is made to determine it from the associated chart if any.- Parameters:
max
- Value to set.
-