Package com.storedobject.chart
Class Legend
java.lang.Object
com.storedobject.chart.AbstractPart
com.storedobject.chart.VisiblePart
com.storedobject.chart.Legend
- All Implemented Interfaces:
Component
,ComponentPart
,ComponentProperty
,HasPadding
,HasPosition
Representation of legend. A legend will be automatically displayed by the
SOChart
. However, that
can be turned off using SOChart.disableDefaultLegend()
and customized legends may be added using
SOChart.add(Component...)
.- Author:
- Syam
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Encode the JSON string with the properties of this.final Border
getBorder
(boolean create) Get the border.getPadding
(boolean create) Get the padding of this on the chart display area.final Position
getPosition
(boolean create) Get the position of this on the chart display area.final TextStyle
getTextStyle
(boolean create) Get the text style.void
Hide a chart.void
Set the border.void
setPadding
(Padding padding) Set the padding of this.final void
setPosition
(Position position) Set the position of this.void
setTextStyle
(TextStyle textStyle) Set the text style.void
Make a hidden chart visible again.void
Display it vertically.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
-
Legend
public Legend()
-
-
Method Details
-
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
-
showVertically
public void showVertically()Display it vertically. -
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.
-
getPadding
Description copied from interface:HasPadding
Get the padding of this on the chart display area. (Iftrue
is passed as the parameter, a new padding will be created if not already exists).- Specified by:
getPadding
in interfaceHasPadding
- Parameters:
create
- Whether to create it or not.- Returns:
- Padding.
-
setPadding
Description copied from interface:HasPadding
Set the padding of this.- Specified by:
setPadding
in interfaceHasPadding
- Parameters:
padding
- Padding to set.
-
getBorder
Get the border.- Parameters:
create
- Whether to create if not exists or not.- Returns:
- Border.
-
setBorder
-
hide
Hide a chart. The chart can be made visible by clicking on the legend later.- Parameters:
chart
- Chart to hide.
-
show
Make a hidden chart visible again.- Parameters:
chart
- Chart to make visible.
-