-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcmap-spainnuts2.html
35 lines (34 loc) · 1.44 KB
/
cmap-spainnuts2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<!--[if lt IE 7]><html class="lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]><html class="lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]><html class="lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Idescat Visual sample page</title>
<link href="../visual.css" rel="stylesheet" type="text/css" />
<script src="../lazyvisual.js"></script>
<script src="../visual.setup.js"></script>
</head>
<body>
<div id="visual" class="visual"></div>
<script>
visual(
{
lang: "en", //Default language is Catalan ("ca"). Set in visual.setup.js
title: "Unemployment rate by Autonomous Communities",
geo: "Spain",
time: "2014 Q3",
footer: 'Source: INE.',
unit: {symbol: "%"},
dec: 2,
range: 0,
by: "spainnuts2",
type: "cmap",
data: [{ id: "01", val: 35.21 }, { id: "02", val: 18.36 }, { id: "03", val: 19.96 }, { id: "04", val: 15.94 }, { id: "05", val: 33.36 }, { id: "06", val: 19.04 }, { id: "07", val: 19.40 }, { id: "08", val: 28.49 }, { id: "09", val: 19.10 }, { id: "10", val: 25.54 }, { id: "11", val: 27.64 }, { id: "12", val: 20.25 }, { id: "13", val: 17.53 }, { id: "14", val: 26.25 }, { id: "15", val: 14.92 }, { id: "16", val: 15.21 }, { id: "17", val: 18.23 }, { id: "18", val: 31.95 }, { id: "19", val: 30.49 }]
}
);
</script>
</body>
</html>