Package com.storedobject.chart
Class AbstractStyle
java.lang.Object
com.storedobject.chart.AbstractStyle
- All Implemented Interfaces:
ComponentProperty
- Direct Known Subclasses:
AreaStyle
,ItemStyle
,LineStyle
,TextBorder
A class that defines basic style details.
- Author:
- Syam
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Encode the JSON string with the properties of this.final AbstractColor
getColor()
Get color.int
Get the opacity of the line (Value as percentage 0 to 100%).final Shadow
getShadow
(boolean create) Get the shadow.void
setColor
(AbstractColor color) Set color.void
setOpacity
(int opacity) Set the opacity of the line (Value as percentage, 0 to 100%).void
Set the shadow.
-
Constructor Details
-
AbstractStyle
public AbstractStyle()
-
-
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
-
getShadow
Get the shadow.- Parameters:
create
- Whether to create if not exists or not.- Returns:
- Shadow.
-
setShadow
-
getOpacity
public int getOpacity()Get the opacity of the line (Value as percentage 0 to 100%).- Returns:
- Opacity.
-
setOpacity
public void setOpacity(int opacity) Set the opacity of the line (Value as percentage, 0 to 100%).- Parameters:
opacity
- Opacity.
-