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
// data
4
var data = anychart.data.set([
5
{x: "Quarter 1", y: "Mobile", heat: 15},
6
{x: "Quarter 2", y: "Mobile", heat: 17},
7
{x: "Quarter 3", y: "Mobile", heat: 21},
8
{x: "Quarter 4", y: "Mobile", heat: 23},
9
{x: "Quarter 1", y: "WebMail", heat: 34},
10
{x: "Quarter 2", y: "WebMail", heat: 33},
11
{x: "Quarter 3", y: "WebMail", heat: 32},
12
{x: "Quarter 4", y: "WebMail", heat: 30},
13
{x: "Quarter 1", y: "Desktop", heat: 43},
14
{x: "Quarter 2", y: "Desktop", heat: 42},
15
{x: "Quarter 3", y: "Desktop", heat: 40},
16
{x: "Quarter 4", y: "Desktop", heat: 38},
17
{x: "Quarter 1", y: "Undetected", heat: 8},
18
{x: "Quarter 2", y: "Undetected", heat: 8},
19
{x: "Quarter 3", y: "Undetected", heat: 7},
20
{x: "Quarter 4", y: "Undetected", heat: 8}
21
]);
22
23
// set chart type
24
var chart = anychart.heatMap(data);
25
chart.title("Email Opens by Environment\nper Quarter 2011");
26
27
// draw chart
28
chart.container("container");
29
chart.draw();
30
});