Package com.storedobject.chart
Class Axis.Ticks
java.lang.Object
com.storedobject.chart.AbstractPart
com.storedobject.chart.VisiblePart
com.storedobject.chart.Axis.Line
com.storedobject.chart.Axis.AbstractTicks
com.storedobject.chart.Axis.Ticks
- All Implemented Interfaces:
ComponentPart
,ComponentProperty
- Enclosing class:
Axis
Represents the tick on the axis line.
- Author:
- Syam
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Encode the JSON string with the properties of this.final int
Get the interval between labels.final boolean
Check if ticks are aligned with labels or not.boolean
isInside()
Check if the tick is drawn inside or outside the axis.void
setAlignWithLabel
(boolean alignWithLabels) Set alignment of the ticks with labels.void
setInside
(boolean inside) Setting for drawing the tick inside the axis.void
setInterval
(int interval) Set the interval between labels.Methods inherited from class com.storedobject.chart.Axis.AbstractTicks
getWidth, setWidth
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
-
Ticks
public Ticks()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 classAxis.AbstractTicks
- Parameters:
sb
- Encoded JSON string to be appended to this.
-
isInside
public boolean isInside()Check if the tick is drawn inside or outside the axis.- Returns:
- True if inside.
-
setInside
public void setInside(boolean inside) Setting for drawing the tick inside the axis.- Parameters:
inside
- True if inside.
-
getInterval
public final int getInterval()Get the interval between labels.- Returns:
- Interval.
-
setInterval
public void setInterval(int interval) Set the interval between labels. (If not set and if the "interval" is set for theAxis.Label
of the axis, that will be used).- Parameters:
interval
- 0 means all labels, 1 means every alternate labels, 2 means every 2nd labels and so on. A special value of -1 means labelling will be determined automatically to eliminate overlap.
-
isAlignWithLabels
public final boolean isAlignWithLabels()Check if ticks are aligned with labels or not. (Applicable only to category type axes).- Returns:
- True or false.
-
setAlignWithLabel
public void setAlignWithLabel(boolean alignWithLabels) Set alignment of the ticks with labels. (Applicable only to category type axes).- Parameters:
alignWithLabels
- True or false.
-