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: "California", y: "2004", heat: 1704211},
6
{x: "California", y: "2005", heat: 2782680},
7
{x: "California", y: "2006", heat: 2992679},
8
{x: "Colorado", y: "2004", heat: 448302},
9
{x: "Colorado", y: "2005", heat: 768390},
10
{x: "Colorado", y: "2006", heat: 843584},
11
{x: "DC", y: "2004", heat: 693211},
12
{x: "DC", y: "2005", heat: 1215158},
13
{x: "DC", y: "2006", heat: 1053581},
14
{x: "Florida", y: "2004", heat: 405985},
15
{x: "Florida", y: "2005", heat: 661250},
16
{x: "Florida", y: "2006", heat: 811924},
17
{x: "Illinois", y: "2004", heat: 727914},
18
{x: "Illinois", y: "2005", heat: 1150659},
19
{x: "Illinois", y: "2006", heat: 1134085},
20
{x: "Massachusetts", y: "2004", heat: 238819},
21
{x: "Massachusetts", y: "2005", heat: 157719},
22
{x: "Massachusetts", y: "2006", heat: 887169},
23
{x: "New York", y: "2004", heat: 1667969},
24
{x: "New York", y: "2005", heat: 2763503},
25
{x: "New York", y: "2006", heat: 3151022},
26
{x: "Texas", y: "2004", heat: 219967},
27
{x: "Texas", y: "2005", heat: 3732889},
28
{x: "Texas", y: "2006", heat: 4185098}
29
]);
30
31
// set chart type
32
var chart = anychart.heatMap(data);
33
chart.title("Sales Revenue");
34
// create ordinalColor scale
35
var colorScale = anychart.scales.ordinalColor();
36
// set range of heat parameters and corresponding colors
37
colorScale.ranges([
38
// set color for all points with the heat less than 1200000
39
{less: 750000, color: "#FF4500"},
40
{from: 750000, to: 1000000, color: "#FFA500"},
41
{from: 1000000, to: 2000000, color: "#FFFF00"},
42
{from: 2000000, to: 3000000, color: "#9ACD32"},
43
{greater: 3000000, color: "#008000"}
44
]);
45
46
// apply colorScale for colorizing heatMap chart
47
chart.colorScale(colorScale);
48
49
var xLabels = chart.xAxis().labels();
50
xLabels.fontSize(10);
51
52
// draw chart
53
chart.container("container");
54
chart.draw();
55
});