Package com.storedobject.chart
Class DataZoom
java.lang.Object
com.storedobject.chart.AbstractPart
com.storedobject.chart.AbstractDataZoom
com.storedobject.chart.DataZoom
- All Implemented Interfaces:
Component
,ComponentPart
,ComponentProperty
,HasPosition
Represents "data zoom" component. Data zoom components allow the end-users
to zoom in and to zoom out charts using mouse and/or touch devices. This component ignores
the "width" and the "height" properties that are set via its
Position
.- Author:
- Syam
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
Used to style the data shadow.static class
Used to style the handle. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Encode the JSON string with the properties of this.final AbstractColor
Get the background color.final AbstractColor
Get the border color.getDataShadowStyle
(boolean create) Get the style of the data shadow.final AbstractColor
Get the filler color.final DataZoom.HandleStyle
getHandleStyle
(boolean create) Get the handle style.final Position
getPosition
(boolean create) Get the position of this on the chart display area.void
hide()
Hide this.void
setBackground
(AbstractColor background) Set the background color.void
setBorderColor
(AbstractColor borderColor) Set the border color.void
setDataShadowStyle
(DataZoom.DataShadowStyle dataShadowStyle) Set the style of the data shadow.void
setFillerColor
(AbstractColor fillerColor) Set the filler color to fill the selected area.void
setHandleStyle
(DataZoom.HandleStyle handleStyle) Set the handle style.final void
setPosition
(Position position) Set the position of this.void
show()
Show this.Methods inherited from class com.storedobject.chart.AbstractDataZoom
addAxis, getEnd, getEndValue, getFilterMode, getMaxSpan, getMaxSpanValue, getMinSpan, getMinSpanValue, getStart, getStartValue, isZoomLock, setEnd, setEndValue, setEndValue, setEndValue, setFilterMode, setMaxSpan, setMaxSpanValue, setMaxSpanValue, setMaxSpanValue, setMinSpan, setMinSpanValue, setMinSpanValue, setMinSpanValue, setShowDetail, setStart, setStartValue, setStartValue, setStartValue, setZoomLock, validate
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
-
DataZoom
Constructor.- Parameters:
coordinateSystem
- Coordinate system.axis
- Axis list.
-
-
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 classAbstractDataZoom
- Parameters:
sb
- Encoded JSON string to be appended to this.
-
show
public void show()Show this. -
hide
public void hide()Hide this. -
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.
-
getBackground
-
setBackground
Set the background color.- Parameters:
background
- Background color.
-
getFillerColor
-
setFillerColor
Set the filler color to fill the selected area.- Parameters:
fillerColor
- Filler color.
-
getBorderColor
-
setBorderColor
Set the border color.- Parameters:
borderColor
- Border color.
-
getHandleStyle
Get the handle style.- Parameters:
create
- Whether to create it or not.- Returns:
- Handle style.
-
setHandleStyle
Set the handle style.- Parameters:
handleStyle
- Handle style.
-
getDataShadowStyle
Get the style of the data shadow.- Parameters:
create
- Whether to create it or not.- Returns:
- Data shadow style.
-
setDataShadowStyle
Set the style of the data shadow.- Parameters:
dataShadowStyle
- Data shadow style.
-