我在我的应用程序中使用了区域堆叠的Highchart。
这是我的FIDDLE
我通过将下面的代码放在y轴 - 标签中来转换y轴值,但无法将工具提示格式化为相同的%值
formatter: function(){
return Math.round(100*this.value / $(this.axis.tickPositions).last()[0]) + '%';
}
但是当我尝试将相同的工具提示应用于工具提示时,工具提示本身就变得不可见了。如何将百分比应用于工具提示。我试过以下代码。
tooltip: {
shared: false,
formatter: function() {
var text = '';
var pcnt = (this.y / dataSum) * 100;
text = this.x + ' : <b>'+ Highcharts.numberFormat(pcnt) +' M</b>';
return text;
}
},
提前致谢