Heat map
author(s):
Torstein Hønsi
by oysteinmoseng
HTML
<script src="https://code.highcharts.com/9.3/highcharts.js"></script>
<script src="https://code.highcharts.com/9.3/modules/heatmap.js"></script>
<script src="https://code.highcharts.com/9.3/modules/exporting.js"></script>
<script src="https://code.highcharts.com/9.3/modules/export-data.js"></script>
<script src="https://code.highcharts.com/9.3/modules/accessibility.js"></script>
<input>
<div id="container"></div>
JavaScript
var chart = Highcharts.chart('container', {
chart: {
type: 'pie'
},
series: [{
dataLabels: {
enabled: true
},
data: [
[0, 0, 1],
[1, 0, 2],
[2, 0, 3],
[0, 1, 4],
[1, 1, 5],
[2, 1, 6]
]
}]
});