Package com.storedobject.chart
Class Axis
java.lang.Object
com.storedobject.chart.AbstractPart
com.storedobject.chart.VisiblePart
com.storedobject.chart.Axis
- All Implemented Interfaces:
ComponentPart
,ComponentProperty
,Wrapped
- Direct Known Subclasses:
AngleAxis
,RadarAxis
,RadiusAxis
,XYAxis
Abstract representation of an axis.
- Author:
- Syam
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
Represents ticks on an axis line.static class
Represents the grid-areas drawn by the axis.static class
Represents the grid-lines drawn by the axis.static class
Represents the label used byAxis
.static class
A base class for various type of lines used in axis and coordinate systems.static class
Represents the minor grid-lines drawn by the axis.static class
Represents the minor tick on the axis line.static class
Represents the axis-pointer shown by the axis.static class
Represent the handle that can be used with axis-pointer.static class
Represents the label that is displayed by the axis-pointer.static enum
Definition of pointer types.static class
Represents the tick on the axis line. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Encode the JSON string with the properties of this.boolean
Get the data type of this axis.final Axis.GridAreas
getGridAreas
(boolean create) Get the grid-areas for the axis.final Axis.GridLines
getGridLines
(boolean create) Get the grid-lines of the axis.final Axis.Label
getLabel
(boolean create) Get the label.final Axis.MinorGridLines
getMinorGridLines
(boolean create) Get the minor grid-lines of the axis.final Axis.MinorTicks
getMinorTicks
(boolean create) Get the minor tick of the axis-line.final String
getName()
Get name of the axis.int
Get the gap between the axis and the name in pixels.Get the location of the name.int
Get the rotation of the name in degrees.final TextStyle
getNameTextStyle
(boolean create) Get the text style for the name.final Axis.Pointer
getPointer
(boolean create) Get the axis-pointer for the axis.int
Return the rendering index of this part.final Axis.Ticks
getTicks
(boolean create) Get the axis-line ticks.int
hashCode()
void
invert()
Invert the axis.void
setData
(AbstractDataProvider<?> data) Set the data for this axis.void
setDivisions
(int divisions) Set the number of divisions on the axis.void
setGridAreas
(Axis.GridAreas gridAreas) Set the grid-areas for the axis.void
setGridLines
(Axis.GridLines gridLines) Set the grid-lines for the axis.void
setLabel
(Axis.Label label) Set the label for the axis.void
Set maximum value for the axis.void
By invoking this method, maximum of the axis will be set as maximum value of the data.void
Set the minimum value for the axis.void
By invoking this method, minimum of the axis will be set as minimum value of the data.void
setMinorGridLines
(Axis.MinorGridLines gridLines) Set the minor grid-lines for the axis.void
setMinorTicks
(Axis.MinorTicks ticks) Set the minor of the axis-line.void
Set the name of the axis.void
setNameGap
(int nameGap) Set the gap between the axis and the name in pixels.void
setNameLocation
(Location nameLocation) Set the location of the name.void
setNameRotation
(int nameRotation) Set the rotation of the name in degrees.void
setNameTextStyle
(TextStyle nameTextStyle) Set the text style or the name.void
setPointer
(Axis.Pointer pointer) Set the axis-pointer for this axis.void
setRenderingIndex
(int renderingIndex) Set the rendering index of this part.void
setTicks
(Axis.Ticks ticks) Set the axis-line ticks.void
showZeroPosition
(boolean show) Set whether zero position to be shown or not.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
hide, show
Methods inherited from class com.storedobject.chart.AbstractPart
getId, getLabelTag, getSerial, getZ, 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
-
Constructor Details
-
Axis
-
Axis
Constructor.- Parameters:
data
- Data type will be determined from the data provider.
-
-
Method Details
-
equals
- Overrides:
equals
in classAbstractPart
-
hashCode
public int hashCode()- Overrides:
hashCode
in classAbstractPart
-
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.
-
setData
Set the data for this axis.Note: Normally, this is not required to be set unless you are working on a custom chart that is not yet supported.
- Parameters:
data
- Data to be used for this axis.
-
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.
-
setRenderingIndex
public void setRenderingIndex(int renderingIndex) Description copied from interface:ComponentPart
Set the rendering index of this part. Rendering index is the position of this part on the chart when it is being rendered. It is up to the part to keep this value if required.- Specified by:
setRenderingIndex
in interfaceComponentPart
- Parameters:
renderingIndex
- Rendering index.
-
getRenderingIndex
public int getRenderingIndex()Description copied from interface:ComponentPart
Return the rendering index of this part. The default implementation returns -1.- Specified by:
getRenderingIndex
in interfaceComponentPart
- Returns:
- Rendering index.
-
getName
Get name of the axis.- Specified by:
getName
in interfaceComponentPart
- Overrides:
getName
in classAbstractPart
- Returns:
- Name of the axis.
-
setName
Set the name of the axis.- Specified by:
setName
in interfaceComponentPart
- Parameters:
name
- Name to set.
-
invert
public void invert()Invert the axis. If called, drawing of the axis will be inverted (drawn in the opposite direction). -
getNameGap
public int getNameGap()Get the gap between the axis and the name in pixels. (It can have negative values).- Returns:
- Gap in pixels.
-
setNameGap
public void setNameGap(int nameGap) Set the gap between the axis and the name in pixels. (It can have negative values).- Parameters:
nameGap
- Gap in pixels.
-
getNameRotation
public int getNameRotation()Get the rotation of the name in degrees.- Returns:
- Rotation.
-
setNameRotation
public void setNameRotation(int nameRotation) Set the rotation of the name in degrees.- Parameters:
nameRotation
- Rotation.
-
getNameLocation
-
setNameLocation
Set the location of the name.- Parameters:
nameLocation
- Location to set.
-
getNameTextStyle
Get the text style for the name.- Parameters:
create
- Whether to create if not exists or not.- Returns:
- Text style.
-
setNameTextStyle
Set the text style or the name.- Parameters:
nameTextStyle
- Text style to set.
-
setMin
Set the minimum value for the axis.- Parameters:
min
- Minimum value. (For category axis, it could be just an ordinal number of the category). Note: The type of the value must be compatible with the data type of the axis. Otherwise, it will be ignored.
-
setMinAsMinData
public void setMinAsMinData()By invoking this method, minimum of the axis will be set as minimum value of the data. -
setMax
Set maximum value for the axis.- Parameters:
max
- Maximum value. (For category axis, it could be just an ordinal number of the category). Note: The type of the value must be compatible with the data type of the axis. Otherwise, it will be ignored.
-
setMaxAsMaxData
public void setMaxAsMaxData()By invoking this method, maximum of the axis will be set as maximum value of the data. -
setDivisions
public void setDivisions(int divisions) Set the number of divisions on the axis. This will be used as a hint only because for actual divisions will be determined based on the readability too. Also, this is not applicable to category type axes.- Parameters:
divisions
- Number of divisions.
-
showZeroPosition
public void showZeroPosition(boolean show) Set whether zero position to be shown or not. On certain charts, it may be required not to show zero position of the axis. Note: this setting is ignored if minimum and maximum values are already set. Also, this is not applicable to category type axes.- Parameters:
show
- True or false.
-
getLabel
Get the label.- Parameters:
create
- Whether to create if not exists or not.- Returns:
- Label.
-
setLabel
-
getTicks
Get the axis-line ticks.- Parameters:
create
- Whether to create if not exists or not.- Returns:
- Tick.
-
setTicks
-
getMinorTicks
Get the minor tick of the axis-line.- Parameters:
create
- Whether to create if not exists or not.- Returns:
- Minor ticks.
-
setMinorTicks
Set the minor of the axis-line.- Parameters:
ticks
- Minor ticks.
-
getGridLines
Get the grid-lines of the axis.- Parameters:
create
- Whether to create if not exists or not.- Returns:
- Grid-lines.
-
setGridLines
Set the grid-lines for the axis.- Parameters:
gridLines
- Grid-lines to set.
-
getMinorGridLines
Get the minor grid-lines of the axis.- Parameters:
create
- Whether to create if not exists or not.- Returns:
- Grid-lines.
-
setMinorGridLines
Set the minor grid-lines for the axis.- Parameters:
gridLines
- Grid-lines to set.
-
getGridAreas
Get the grid-areas for the axis.- Parameters:
create
- Whether to create if not exists or not.- Returns:
- Grid-areas.
-
setGridAreas
Set the grid-areas for the axis.- Parameters:
gridAreas
- Grid-areas to set.
-
getPointer
Get the axis-pointer for the axis. (By default, no axis-pointer will be shown. However, if a call is made to this method with create =true
, axis-pointer will be made visible. Then, you may use theVisiblePart.hide()
method to hide it if required.)- Parameters:
create
- Whether to create if not exists or not.- Returns:
- Axis-pointer.
-
setPointer
Set the axis-pointer for this axis.- Parameters:
pointer
- Axis-pointer.
-
getDataType
-