class anychart.core.axes.MapTicks Improve this Doc
Extends: anychart.core.VisualBase
Map axis ticks class.
Methods Overview
Coloring | |
stroke() | Ticks stroke settings. |
Interactivity | |
enabled() | Element state (enabled or disabled). |
Size and Position | |
length() | Ticks length. |
position() | Ticks position. |
zIndex() | Z-index of the element. |
Methods Description
enabled
Getter for the element state (enabled or disabled).
Returns:
boolean - Element state.Try it:
Setter for the element enabled state.
Params:
Name | Type | Default | Description |
---|---|---|---|
enabled | boolean | true | Enabled state to set. |
Returns:
anychart.core.axes.MapTicks - Self instance for method chaining. Example.
if (!element.enabled()) element.enabled(true);
Try it:
length
Getter for ticks length.
Returns:
number - Ticks length. See listing
var axesTicks = mapAxes.ticks(); var length = axesTicks.length();
Setter for ticks length.
Params:
Name | Type | Description |
---|---|---|
length | number | string | Value to set. |
Returns:
anychart.core.axes.MapTicks - Self instance for method chaining.Try it:
position
Getter for ticks position.
Returns:
anychart.enums.SidePosition | string - Ticks position. See listing
var axesTicks = mapAxes.ticks(); var position = axesTicks.position();
Setter for ticks position.
Params:
Name | Type | Default | Description |
---|---|---|---|
position | anychart.enums.SidePosition | string | 'outside' | Ticks position to set. |
Returns:
anychart.core.axes.MapTicks - Self instance for method chaining.Try it:
stroke
Getter for ticks stroke settings.
Returns:
anychart.graphics.vector.Stroke - Ticks stroke settings. See listing
var axesTicks = mapAxes.ticks(); var stroke = axesTicks.stroke();
Setter for ticks stroke settings.
Params:
Name | Type | Default | Description |
---|---|---|---|
color | anychart.graphics.vector.Stroke | anychart.graphics.vector.ColoredFill | string | null | Stroke settings. | |
thickness | number | 1 | Line thickness. |
dashpattern | string | Controls the pattern of dashes and gaps used to stroke paths. | |
lineJoin | string | anychart.graphics.vector.StrokeLineJoin | Line joint style. | |
lineCap | string | anychart.graphics.vector.StrokeLineCap | Line cap style. |
Returns:
anychart.core.axes.MapTicks - Self instance for method chaining.Try it:
Setter for ticks stroke settings using an object.
Params:
Name | Type | Description |
---|---|---|
settings | Object | Object with stroke settings from anychart.graphics.vector.Stroke |
Returns:
anychart.core.axes.MapTicks - Self instance for method chaining.Try it:
zIndex
Setter for the Z-index of the element.
Detailed description
The bigger the index - the higher the element position is.
Params:
Name | Type | Default | Description |
---|---|---|---|
zIndex | number | 0 | Value to set. |
Returns:
anychart.core.axes.MapTicks - Self instance for method chaining.Try it: