Javascript examples for highcharts:Chart Axis
Heatmap chart colorAxis min 0 Max 1
<html> <head> <title>Highcharts Demo</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://code.jquery.com/jquery-1.9.1.js"></script> <script type="text/javascript"> $(function () {/*from ww w . ja va2 s. co m*/ $('#container').highcharts({ chart: { type: 'heatmap', marginTop: 40, marginBottom: 80 }, title: { text: 'Sales per employee per weekday' }, xAxis: { categories: ['Alexander', 'Marie', 'Maximilian', 'Sophia', 'Lukas', 'Maria', 'Leon', 'Anna', 'Tim', 'Laura'] }, yAxis: { categories: ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'], title: null }, colorAxis: { min: 0, minColor: '#FFFFFF', maxColor: Highcharts.getOptions().colors[0] }, legend: { align: 'right', layout: 'vertical', margin: 0, verticalAlign: 'top', y: 25, symbolHeight: 280 }, tooltip: { formatter: function () { return '<b>' + this.series.xAxis.categories[this.point.x] + '</b> sold <br><b>' + this.point.value + '</b> items on <br><b>' + this.series.yAxis.categories[this.point.y] + '</b>'; } }, series: [{ name: 'Sales per employee', borderWidth: 1, data: [[0, 0, 0], [0, 1, 0.19], [0, 2, 0.8], [0, 3, 0.24], [0, 4, 0.67], [1, 0, 0.92], [1, 1, 0.58], [1, 2, 0.78], [1, 3, 0.117], [1, 4, 0.48], [2, 0, 0.35], [2, 1, 0.15], [2, 2, 0.123], [2, 3, 0.64], [2, 4, 0.52], [3, 0, 0.72], [3, 1, 0.132], [3, 2, 0.114], [3, 3, 0.19], [3, 4, 0.16], [4, 0, 0.38], [4, 1, 0.5], [4, 2, 0.8], [4, 3, 0.117], [4, 4, 0.115], [5, 0, 0.88], [5, 1, 0.32], [5, 2, 0.12], [5, 3, 0.6], [5, 4, 0.120], [6, 0, 0.13], [6, 1, 0.44], [6, 2, 0.88], [6, 3, 0.98], [6, 4, 0.96], [7, 0, 0.31], [7, 1, 0.1], [7, 2, 0.82], [7, 3, 0.32], [7, 4, 0.30], [8, 0, 0.85], [8, 1, 0.97], [8, 2, 0.123], [8, 3, 0.64], [8, 4, 0.84], [9, 0, 0.47], [9, 1, 0.114], [9, 2, 0.31], [9, 3, 0.48], [9, 4, 0.91]], dataLabels: { enabled: true, color: '#000000' } }] }); }); </script> </head> <body> <script src="https://code.highcharts.com/highcharts.js"></script> <script src="https://code.highcharts.com/modules/heatmap.js"></script> <script src="https://code.highcharts.com/modules/exporting.js"></script> <div id="container" style="height: 400px; min-width: 310px; max-width: 800px; margin: 0 auto"></div> </body> </html>