自顶一下 y 轴的标签格式化咯
代码如下:
yAxis: { lables: { formatter: function() { reutrn num2e(this.y); // 更多见API文档:http://hcharts.cn } }}//function num2e(num){ var p = Math.floor(Math.log(num)/Math.LN10); var n = num * Math.pow(10, -p); return n + 'e' + p;}