Package com.storedobject.chart
Class Axis.GridAreas
java.lang.Object
com.storedobject.chart.AbstractPart
com.storedobject.chart.VisiblePart
com.storedobject.chart.Area
com.storedobject.chart.Axis.GridAreas
- All Implemented Interfaces:
ComponentPart
,ComponentProperty
- Enclosing class:
Axis
Represents the grid-areas drawn by the axis.
- Author:
- Syam
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Encode the JSON string with the properties of this.final int
Get the interval for the grid lines.void
setInterval
(int interval) Set the interval for the grid lines.Methods inherited from class com.storedobject.chart.VisiblePart
hide, show, 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, getRenderingIndex, setName, setRenderingIndex
-
Constructor Details
-
GridAreas
public GridAreas()Constructor.
-
-
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 classArea
- Parameters:
sb
- Encoded JSON string to be appended to this.
-
getInterval
public final int getInterval()Get the interval for the grid lines. (If not defined, interval property of the axis-label will be used).- Returns:
- Interval.
-
setInterval
public void setInterval(int interval) Set the interval for the grid lines. (If not defined, interval property of the axis-label will be used).- Parameters:
interval
- 0 means all, 1 means every alternate line, 2 means every 2nd line and so on. A special value of -1 means it will be determined automatically.
-