HTMLcopy
1
<div id="container"></div>
CSScopy
6
1
html, body, #container {
2
width: 100%;
3
height: 100%;
4
margin: 0;
5
padding: 0;
6
}
JavaScriptcopy
x
1
anychart.onDocumentReady(function () {
2
3
// This sample uses 3rd party proj4 component
4
// that makes it possible to set coordinates
5
// for the points and labels on the map and
6
// required for custom projections and grid labels formatting.
7
// See https://docs.anychart.com/Maps/Map_Projections
8
9
var data = [
10
{id: "AU.CT", value: 15},
11
{id: "AU.VI", value: 23},
12
{id: "AU.WA", value: 86},
13
{id: "AU.QL", value: 16},
14
{id: "AU.NS", value: 32},
15
{id: "AU.NT", value: 64},
16
{id: "AU.TS", value: 28},
17
{id: "AU.SA", value: 45}
18
];
19
20
var map = anychart.map();
21
map.geoData(anychart.maps.australia);
22
map.choropleth(data);
23
24
// enable axes and configure labels
25
map.axes(true);
26
map.axes().labels().fontColor("Red");
27
map.axes().right().labels(false);
28
map.axes().top().minorLabels(true);
29
30
map.title("Map Axes Labels");
31
map.container("container");
32
map.draw();
33
});