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
var dataSet = anychart.data.set([
2
{id: 'US-MN', name: "Minnesota", 'value': 8.4},
3
{id: 'US-MT', name: "Montana", 'value': 8.5},
4
{id: 'US-ND', name: "North Dakota", 'value': 5.1},
5
{id: 'US-ID', name: "Idaho", 'value': 8.0},
6
{id: 'US-WA', name: "Washington", 'value': 13.1},
7
{id: 'US-AZ', name: "Arizona", 'value': 9.7},
8
{id: 'US-CA', name: "California", 'value': 14.0},
9
{id: 'US-CO', name: "Colorado", 'value': 8.7},
10
]);
11
12
var dataSet_expansion = anychart.data.set([
13
{id: 'US-UT', name: "Utah"},
14
{id: 'US-WY', name: "Wyoming"},
15
{id: 'US-AR', name: "Arkansas"},
16
{id: 'US-IA', name: "Iowa"},
17
{id: 'US-KS', name: "Kansas"},
18
{id: 'US-MO', name: "Missouri"},
19
]);
20
21
anychart.onDocumentReady(function() {
22
map = anychart.map();
23
24
//set map Geo data
25
map.geoData(anychart.maps.usa_mainland);
26
27
var colorRange = map.colorRange();
28
colorRange.enabled(true);
29
colorRange.labels().padding(3);
30
31
colorRange.stroke('#B9B9B9');
32
colorRange.ticks().stroke('#B9B9B9').position('outside').length(10).enabled(true);
33
colorRange.minorTicks().stroke('#B9B9B9').position('outside').length(5).enabled(true);
34
colorRange.marker().fill('#D98026').offsetY(0);
35
36
var series = map.choropleth(dataSet);
37
series.geoIdField('iso_3166_2');
38
series.colorScale(anychart.scales.linearColor());
39
series.hoverFill('#FF9933');
40
series.name('Sales of ACME Corp.');
41
series.hoverStroke(anychart.color.darken('#F79430'));
42
series.selectFill('#663300');
43
series.selectStroke(anychart.color.darken('#663300'));
44
series.labels().fontSize(10).fontColor('#212121').format(function(){
45
return (this.name+'\n'+this.value);
46
});
47
series.tooltip().textWrap('byLetter').useHtml(true);
48
series.tooltip().format(function() {
49
return '<span style="font-size: 13px">' + '$ ' + this.value + 'm </span>';
50
});
51
series.colorScale(anychart.scales.linearColor('#E08529', '#753D05'));
52
53
// second series
54
var series_exp = map.choropleth(dataSet_expansion);
55
series_exp.geoIdField('iso_3166_2');
56
series_exp.hoverFill('#99FF66');
57
series_exp.name('Sales of ACME Corp.');
58
series_exp.hoverStroke(anychart.color.darken('#8FF05C'));
59
series_exp.selectFill('#336600');
60
series_exp.selectStroke(anychart.color.darken('#336600'));
61
series_exp.fill('#75C942');
62
series_exp.labels().fontSize(10).fontColor('#212121').format(function(){
63
return this.name;
64
});
65
66
// some legend settings
67
map.legend(true);
68
series.legendItem().iconFill('#D98026');
69
series.legendItem().iconType("circle");
70
series_exp.legendItem().iconFill('#75C942');
71
series_exp.legendItem().iconType("circle");
72
73
map.container('container');
74
map.draw();
75
});