Package com.storedobject.chart
Class TextStyle
java.lang.Object
com.storedobject.chart.TextStyle
- All Implemented Interfaces:
ComponentProperty
- Direct Known Subclasses:
AbstractLabel
,TreeDataProvider.Label
As the name indicates, "text style" is for styling texts.
- Author:
- Syam
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Encode the JSON string with the properties of this.getAlignment
(boolean create) Get the alignment.final AbstractColor
Get background color.final Border
getBorder
(boolean create) Get the border.final AbstractColor
getColor()
Get color.final Font
Get font.final Padding
getPadding
(boolean create) Get the padding.getRichTextStyle
(boolean create) Get theRichTextStyle
instance associated with this text style.final TextBorder
getTextBorder
(boolean create) Get the text border.void
setAlignment
(Alignment alignment) Set the alignment.void
setBackground
(AbstractColor background) Set background color.void
Set the border.void
setColor
(AbstractColor color) Set color.void
setFontStyle
(Font font) Set font.void
setPadding
(Padding padding) Set the padding.void
setRichTextStyle
(RichTextStyle richTextStyle) Set aRichTextStyle
instance that was created elsewhere.final void
setTextBorder
(TextBorder textBorder) Set the text border.
-
Constructor Details
-
TextStyle
public TextStyle()
-
-
Method Details
-
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.
-
getColor
-
setColor
-
getBackground
-
setBackground
Set background color.- Parameters:
background
- Background color.
-
getFontStyle
-
setFontStyle
-
getPadding
Get the padding.- Parameters:
create
- Whether to create if not exists or not.- Returns:
- Padding.
-
setPadding
-
getBorder
Get the border.- Parameters:
create
- Whether to create if not exists or not.- Returns:
- Border.
-
setBorder
-
getTextBorder
Get the text border.- Parameters:
create
- Whether to create if not exists or not.- Returns:
- Text border.
-
setTextBorder
Set the text border.- Parameters:
textBorder
- Text border.
-
getAlignment
Get the alignment.- Parameters:
create
- Whether to create if not exists or not.- Returns:
- Alignment.
-
setAlignment
-
getRichTextStyle
Get theRichTextStyle
instance associated with this text style.- Parameters:
create
- Whether to create if not exists or not.- Returns:
RichTextStyle
if exists or created just now.
-
setRichTextStyle
Set aRichTextStyle
instance that was created elsewhere.- Parameters:
richTextStyle
-RichTextStyle
to set.
-