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
// Creates data set.
3
var dataSet = anychart.data.set([
4
{x: "California", y: "2004", heat: 1704211},
5
{x: "California", y: "2005", heat: 2782680},
6
{x: "California", y: "2006", heat: 2992679},
7
{x: "Illinois", y: "2004", heat: 727914},
8
{x: "Illinois", y: "2005", heat: 1150659},
9
{x: "Illinois", y: "2006", heat: 1134085},
10
{x: "Massachusetts", y: "2004", heat: 238819},
11
{x: "Massachusetts", y: "2005", heat: 157719},
12
{x: "Massachusetts", y: "2006", heat: 887169},
13
{x: "New York", y: "2004", heat: 1667969},
14
{x: "New York", y: "2005", heat: 2763503},
15
{x: "New York", y: "2006", heat: 3151022},
16
{x: "Texas", y: "2004", heat: 219967},
17
{x: "Texas", y: "2005", heat: 3732889},
18
{x: "Texas", y: "2006", heat: 4185098}
19
]);
20
21
var chart = anychart.heatMap();
22
23
var view = dataSet.mapAs();
24
25
var filteredView = view.filter("heat", function (heat) {
26
return heat >= 1300000;
27
});
28
29
// Set data.
30
chart.data(filteredView);
31
32
chart.title("Set chart data using view.");
33
chart.labels(true);
34
chart.container("container");
35
chart.draw();
36
});