AnyChart
API Reference
Still have questions?
Contact support
Top
You are looking at an outdated v7 version of this document. Switch to the v8 version to see the up to date information.

class anychart.scales.Geo Improve this Doc

Extends: anychart.core.Base

Define geo scale.

Methods Overview

Specific settings
getType()Returns scale type.
maxTicksCount()Maximum ticks count.
maximumX()Scale maximum X settings.
maximumY()Scale maximum Y settings.
minimumX()Scale minimum X settings.
minimumY()Scale minimum Y settings.
precision()Precision settings.
xMinorTicks()X ticks settings.
xTicks()X ticks settings.
yMinorTicks()Y minor ticks settings.
yTicks()Y ticks settings.
Events
listen()Adds an event listener.
listenOnce()Adds a single time event listener.
removeAllListeners()Removes all listeners.
unlisten()Removes the listener.
unlistenByKey()Removes the listener by the key.
Size and Position
gap()Gap setting.
Miscellaneous
extendDataRange()Extends the current input domain with the passed values (if such don't exist in the domain).

Methods Description

extendDataRange

Extends the current input domain with the passed values (if such don't exist in the domain).

Params:

NameTypeDescription
xnumberX value that is supposed to extend the input domain.
ynumberY value that is supposed to extend the input domain.
var_args*Values that are supposed to extend the input domain.

Returns:

anychart.scales.Geo - Self instance for method chaining.

gap

Getter for the current gap setting.

Returns:

number - Gap value.
Example
var currentScale = australiaMap.scale();
currentScale.gap();
Setter for the gap setting.

Params:

NameTypeDefaultDescription
valuenumber
0
Value to set.

Returns:

anychart.scales.Geo - Self instance for method chaining.

getType

Returns scale type.

Returns:

string - Scale type.

listen

Adds an event listener to an implementing object.

Params:

NameTypeDefaultDescription
typestring
The event type id.
listenerfunction
Callback method. Function that looks like function(event){ // event.actualTarget - actual event target // event.currentTarget - current event target // event.iterator - event iterator // event.originalEvent - original event // event.point - event point // event.pointIndex - event point index }.
useCaptureboolean
false
Whether to fire in capture phase. Learn more about capturing https://javascript.info/bubbling-and-capturing
listenerScopeObject
Object in whose scope to call the listener.

Returns:

Object - Unique key for the listener.

listenOnce

Adds an event listener to an implementing object.

Params:

NameTypeDefaultDescription
typestring
The event type id.
listenerfunction
Callback method.
useCaptureboolean
false
Whether to fire in capture phase. Learn more about capturing https://javascript.info/bubbling-and-capturing
listenerScopeObject
Object in whose scope to call the listener.

Returns:

Object - Unique key for the listener.

maxTicksCount

Getter for maximum ticks count.

Returns:

number - Maximum ticks count.
See listing
var maxTicksCount = mapScale.maxTicksCount();
Setter for maximum ticks count.
Use the maxTicksCount() method for interval-mode ticks calculation.
If the number of ticks is greater than set in maxTicksCount(), the scale calculates from 4 to 6 ticks.

Params:

NameTypeDescription
valuenumberValue to set.

Returns:

anychart.scales.Geo - Self instance for method chaining.

maximumX

Getter for the maximum X.

Returns:

number - Scale maximum X.
See listing
var mapScale = australiaMap.scale();
var maximum = mapScale.maximumX();
Setter for the maximum X.

Params:

NameTypeDescription
valuenumberValue to set.

Returns:

anychart.scales.Geo - Self instance for method chaining.

maximumY

Getter for the maximum Y.

Returns:

number - Scale maximum.
See listing
var mapScale = australiaMap.scale();
var maximum = mapScale.maximumY();
Setter for the maximum Y.

Params:

NameTypeDescription
valuenumberValue to set.

Returns:

anychart.scales.Geo - Self instance for method chaining.

minimumX

Getter for the minimum X.

Returns:

number - Scale minimum X.
See listing
var mapScale = australiaMap.scale();
var minimum = mapScale.minimumX();
Setter for the minimum X.

Params:

NameTypeDescription
valuenumberValue to set.

Returns:

anychart.scales.Geo - Self instance for method chaining.

minimumY

Getter for the minimum Y.

Returns:

number - Scale minimum Y.
See listing
var mapScale = australiaMap.scale();
var minimum = mapScale.minimumY();
Setter for the minimum Y.

Params:

NameTypeDescription
valuenumberValue to set.

Returns:

anychart.scales.Geo - Self instance for method chaining.

precision

Getter for the precision.

Returns:

Array.<number> - Precision.
Setter for the precision using one value.

Params:

NameTypeDescription
precisionArray.<number>Value to set.

Returns:

anychart.scales.Geo - Self instance for method chaining.
Setter for the precision using several values.

Params:

NameTypeDescription
xPrecisionnumberPrecision by x.
yPrecisionnumberPrecision by y.

Returns:

anychart.scales.Geo - Self instance for method chaining.

removeAllListeners

Removes all listeners from an object. You can also optionally remove listeners of some particular type.

Params:

NameTypeDescription
typestringType of event to remove, default is to remove all types.

Returns:

number - Number of listeners removed.

unlisten

Removes a listener added using listen() or listenOnce() methods.

Params:

NameTypeDefaultDescription
typestring
The event type id.
listenerfunction
Callback method.
useCaptureboolean
false
Whether to fire in capture phase. Learn more about capturing https://javascript.info/bubbling-and-capturing
listenerScopeObject
Object in whose scope to call the listener.

Returns:

boolean - Whether any listener was removed.

unlistenByKey

Removes an event listener which was added with listen() by the key returned by listen() or listenOnce().

Params:

NameTypeDescription
keyObjectThe key returned by listen() or listenOnce().

Returns:

boolean - Whether any listener was removed.

xMinorTicks

Getter for the set of scale x minor ticks.

Returns:

anychart.scales.GeoTicks - Ticks instance.
Setter for the set of scale x minor ticks.

Params:

NameTypeDescription
valueObject | ArrayAn array of ticks to set.

Returns:

anychart.scales.Geo - Self instance for method chaining.

xTicks

Getter for the set of scale x ticks.

Returns:

anychart.scales.GeoTicks - Ticks instance.
Setter for the set of scale x ticks.

Params:

NameTypeDescription
valueObject | ArrayAn array of ticks to set.

Returns:

anychart.scales.Geo - Self instance for method chaining.

yMinorTicks

Getter for the set of scale y minor ticks.

Returns:

anychart.scales.GeoTicks - Ticks instance.
Setter for the set of scale y minor ticks.

Params:

NameTypeDescription
valueObject | ArrayAn array of ticks to set.

Returns:

anychart.scales.Geo - Self instance for method chaining.

yTicks

Getter for the set of scale y ticks.

Returns:

anychart.scales.GeoTicks - Ticks instance.
Setter for the set of scale y ticks.

Params:

NameTypeDescription
valueObject | ArrayAn array of ticks to set.

Returns:

anychart.scales.Geo - Self instance for method chaining.