class anychart.scales.GeoTicks Improve this Doc
Extends: anychart.core.Base
Map geo scale ticks.
Methods Overview
Specific settings | |
count() | Ticks count. |
get() | Returns an array of ticks. |
interval() | Ticks interval. |
set() | Setups ticks as an explicit array of fixed ticks. |
Methods Description
count
Getter for ticks count.
Returns:
number - Ticks count value. See listing
var ticks = australiaMap.scale().xTicks(); var ticksCount = currentTicks.count();
Setter for ticks count value.
Note: Final number of ticks can be greater (one more tick can be added).
Params:
Name | Type | Description |
---|---|---|
value | number | Ticks count value. Note: If value is defined, but not a number or less than 2, it defaults to 5. |
Returns:
anychart.scales.GeoTicks - Self instance for method chaining.Try it:
Setter for ticks count value using two parameters.
Note: Final number of ticks can be greater than maximum (one more tick can be added).
Params:
Name | Type | Description |
---|---|---|
minimumCount | number | Value to set. |
maximumCount | number | Value to set. |
Returns:
anychart.scales.GeoTicks - Self instance for method chaining.Try it:
get
Returns an array of ticks.
Each tick is a value in terms of data, to make a tick on.
Note: returns correct values only after anychart.scales.Base#finishAutoCalc or after chart.draw()
Each tick is a value in terms of data, to make a tick on.
Note: returns correct values only after anychart.scales.Base#finishAutoCalc or after chart.draw()
Returns:
Array - Array of ticks.Try it:
interval
Getter for ticks interval value.
Note: You can get interval value only if it was set explicitly, it returns NaN otherwise
Returns:
number - Interval value. See listing
var ticks = australiaMap.scale().xTicks(); var currentInterval = ticks.interval();
Setter for ticks interval value.
Params:
Name | Type | Description |
---|---|---|
value | number | Ticks interval value. Note: If value is defined but is not a number or less than 0, it defaults to NaN and count() resets to 5. |
Returns:
anychart.scales.GeoTicks - Self instance for method chaining.Try it:
set
Setups ticks as an explicit array of fixed ticks.
Params:
Name | Type | Description |
---|---|---|
ticks | Array | Explicit ticks array. |
Returns:
anychart.scales.GeoTicks - Self instance for method chaining.Try it: