Package com.storedobject.chart
Class Title
java.lang.Object
com.storedobject.chart.AbstractPart
com.storedobject.chart.VisiblePart
com.storedobject.chart.Title
- All Implemented Interfaces:
Component
,ComponentPart
,ComponentProperty
,HasPosition
Title for the chart. If you are adding more than one title, please make sure that you set appropriate
positions to eliminate overlap.
- Author:
- Syam
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Encode the JSON string with the properties of this.final int
getGap()
Get the gap between title and sub-title.final Position
getPosition
(boolean create) Get the position of this on the chart display area.Get the sub-text that will be shown as the sub-title in the second line.final TextStyle
getSubtextStyle
(boolean create) Get the sub-text style.getText()
Get the text of the title.final TextStyle
getTextStyle
(boolean create) Get the text style.void
setGap
(int gap) Set the gap between title and sub-title.final void
setPosition
(Position position) Set the position of this.void
setSubtext
(String subtext) Set the sub-text that will be shown as the sub-title in the second line.void
setSubtextStyle
(TextStyle textStyle) Set the sub-text style.void
Set the text of the title.void
setTextStyle
(TextStyle textStyle) Set the text style.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
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
-
Constructor Details
-
Title
Create a title with a given text.- Parameters:
text
- Text to display as title.
-
-
Method Details
-
getText
-
setText
-
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.
-
validate
public void 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
-
getSubtext
Get the sub-text that will be shown as the sub-title in the second line.- Returns:
- Text of the sub-title. It could be
null
.
-
setSubtext
Set the sub-text that will be shown as the sub-title in the second line.- Parameters:
subtext
- Text of the sub-title. It could benull
.
-
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.
-
getTextStyle
Get the text style.- Parameters:
create
- Whether to create if not exists or not.- Returns:
- Text style.
-
setTextStyle
Set the text style.- Parameters:
textStyle
- Text style to set.
-
getSubtextStyle
Get the sub-text style.- Parameters:
create
- Whether to create if not exists or not.- Returns:
- Text style.
-
setSubtextStyle
Set the sub-text style.- Parameters:
textStyle
- Text style to set.
-
getGap
public final int getGap()Get the gap between title and sub-title.- Returns:
- Gap in pixels.
-
setGap
public void setGap(int gap) Set the gap between title and sub-title.- Parameters:
gap
- Gap in pixels.
-