HighCharts:如何在极坐标图中创建热图

时间:2020-02-04 06:50:47

标签: javascript

我刚刚开始从事HighCharts的研究。我有一个现有的极坐标图,现在我想显示一个基于温度的大热图。谁能帮助我实现这一目标。

这是示例JsFiddle,我正在尝试。

https://jsfiddle.net/67xu9qjm/4/

console.log(Math.pow(10, -2).toFixed(2))
console.log(Math.pow(10, -3).toFixed(3))
console.log(Math.pow(10, -4).toFixed(4))
console.log(Math.pow(10, -5).toFixed(5))
console.log(Math.pow(10, -6).toFixed(6))

let number = -7
console.log(Math.pow(10, number).toFixed(Math.abs(number)))

任何人都可以输入有关此操作的信息吗?

0 个答案:

没有答案