AnyChart
API Reference
Still have questions?
Contact support
Top

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.
Setter for the element enabled state.

Params:

NameTypeDefaultDescription
enabledboolean
true
Enabled state to set.

Returns:

anychart.core.axes.MapTicks - Self instance for method chaining.
Example.
if (!element.enabled())
   element.enabled(true);

length

Getter for ticks length.

Returns:

number - Ticks length.
See listing
var axesTicks = mapAxes.ticks();
var length = axesTicks.length();
Setter for ticks length.

Params:

NameTypeDescription
lengthnumber | stringValue to set.

Returns:

anychart.core.axes.MapTicks - Self instance for method chaining.

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:

NameTypeDefaultDescription
positionanychart.enums.SidePosition | string
'outside'
Ticks position to set.

Returns:

anychart.core.axes.MapTicks - Self instance for method chaining.

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:

NameTypeDefaultDescription
coloranychart.graphics.vector.Stroke | anychart.graphics.vector.ColoredFill | string | null
Stroke settings.
thicknessnumber
1
Line thickness.
dashpatternstring
Controls the pattern of dashes and gaps used to stroke paths.
lineJoinstring | anychart.graphics.vector.StrokeLineJoin
Line joint style.
lineCapstring | anychart.graphics.vector.StrokeLineCap
Line cap style.

Returns:

anychart.core.axes.MapTicks - Self instance for method chaining.
Setter for ticks stroke settings using an object.

Params:

NameTypeDescription
settingsObjectObject with stroke settings from anychart.graphics.vector.Stroke

Returns:

anychart.core.axes.MapTicks - Self instance for method chaining.

zIndex

Getter for the Z-index of the element.

Returns:

number - Z-index.
Setter for the Z-index of the element.

Params:

NameTypeDefaultDescription
zIndexnumber
0
Value to set.

Returns:

anychart.core.axes.MapTicks - Self instance for method chaining.