Heatmap.js V2.0 是目前網路上最先進的熱圖視覺化庫。新的2.0版本 Heatmap.js 更快,擁有更強的渲染模組,使用更方便,因此您可以快速掌握和擴充套件自定義功能。
下面是一個簡單的呼叫示例:
// minimal heatmap instance configuration var heatmapInstance = h337.create({ // only container is required, the rest will be defaults container: document.querySelector('.heatmap') }); // now generate some random data var points = []; var max = 0; var width = 840; var height = 400; var len = 200; while (len--) { var val = Math.floor(Math.random()*100); max = Math.max(max, val); var point = { x: Math.floor(Math.random()*width), y: Math.floor(Math.random()*height), value: val }; points.push(point); } // heatmap data format var data = { max: max, data: points }; // if you have a set of datapoints always use setData instead of addData // for data initialization heatmapInstance.setData(data);
來自:前端裡
相關閱讀
評論(1)