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/7.14.3/Maps/Map_Projections
8
9
var dataSet = anychart.data.set([
10
{'id': 'AU.WA', 'value': 300}, // Western Australia
11
{'id': 'AU.JB', 'value': 270}, // Jervis Bay Territory
12
{'id': 'AU.NS', 'value': 240}, // New South Wales
13
{'id': 'AU.VI', 'value': 75}, // Victoria
14
{'id': 'AU.NT', 'value': 130}, // Northern Territory
15
{'id': 'AU.TS', 'value': 190}, // Tasmania
16
{'id': 'AU.CT', 'value': 100, labels: false}, // Australian Capital Territory
17
{'id': 'AU.SA', 'value': 280}, // South Australia
18
{'id': 'AU.QL', 'value': 220} // Queensland
19
]);
20
21
// create map
22
var map = anychart.map();
23
map.geoData(anychart.maps.australia);
24
25
// set the background color
26
map.background('none');
27
// set the title and its preferences
28
map.title().useHtml(true).hAlign('center');
29
map.title('<span style="font-size: 18px;">Bi-polar progression with Ordinal Color Scale</span>');
30
31
// set the series
32
var series = map.choropleth(dataSet);
33
series.geoIdField('code_hasc');
34
35
// disable the labels
36
series.labels(false);
37
38
// set the colors and ranges for the scale
39
series.colorScale(anychart.scales.ordinalColor([{less:200},{from:200, to:250},{greater:250}]));
40
41
//set the single hue progression
42
var colors = anychart.color.bipolarHueProgression('#EC6E07', '#64B5F6', 3);
43
44
// define the colors
45
series.colorScale().colors(colors);
46
47
// create, enable and stroke the colorRange
48
var colorRange = map.colorRange();
49
colorRange.enabled(true).stroke('#BBB');
50
51
// disable the labels
52
colorRange.labels(false);
53
54
// set the container
55
map.container('container');
56
map.draw();
57
});