Package com.storedobject.chart
Class CoordinateSystemZoom
java.lang.Object
com.storedobject.chart.AbstractPart
com.storedobject.chart.AbstractDataZoom
com.storedobject.chart.CoordinateSystemZoom
- All Implemented Interfaces:
Component
,ComponentPart
,ComponentProperty
Represents "data zoom" component that works inside a coordinate system. Data zoom components allow the end-users
to zoom in and to zoom out charts using mouse and/or touch devices.
- Author:
- Syam
-
Constructor Summary
ConstructorsConstructorDescriptionCoordinateSystemZoom
(CoordinateSystem coordinateSystem, Axis... axes) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionvoid
disable()
Disable the zooming feature.void
enable()
Enable the zooming feature.void
Encode the JSON string with the properties of this.void
moveOnMouseMove
(boolean moveOnMouseMove) Whether to trigger the data window move on mouse move or not.void
moveOnMouseMove
(Key key) Switch on the data window moving feature when the mouse is moved with a special key combination.void
moveOnMouseWheel
(boolean moveOnMouseWheel) Whether to trigger the data window move on mouse wheel or not.void
moveOnMouseWheel
(Key key) Switch on the data window moving feature when the mouse wheel is moved with a special key combination.void
zoomOnMouseWheel
(boolean zoomOnMouseWheel) Whether to trigger the zoom on mouse wheel or not.void
zoomOnMouseWheel
(Key key) Switch on the zooming feature when the mouse wheel is moved with a special key combination.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
-
CoordinateSystemZoom
Constructor.- Parameters:
coordinateSystem
- Coordinate system.axes
- 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.
-
enable
public void enable()Enable the zooming feature. -
disable
public void disable()Disable the zooming feature. -
zoomOnMouseWheel
public void zoomOnMouseWheel(boolean zoomOnMouseWheel) Whether to trigger the zoom on mouse wheel or not.- Parameters:
zoomOnMouseWheel
- True or false.
-
zoomOnMouseWheel
Switch on the zooming feature when the mouse wheel is moved with a special key combination.- Parameters:
key
- Special key to press while moving the mouse wheel.
-
moveOnMouseWheel
public void moveOnMouseWheel(boolean moveOnMouseWheel) Whether to trigger the data window move on mouse wheel or not.- Parameters:
moveOnMouseWheel
- True or false.
-
moveOnMouseWheel
Switch on the data window moving feature when the mouse wheel is moved with a special key combination.- Parameters:
key
- Special key to press while moving the mouse wheel.
-
moveOnMouseMove
public void moveOnMouseMove(boolean moveOnMouseMove) Whether to trigger the data window move on mouse move or not.- Parameters:
moveOnMouseMove
- True or false.
-
moveOnMouseMove
Switch on the data window moving feature when the mouse is moved with a special key combination.- Parameters:
key
- Special key to press while moving the mouse.
-