我正在尝试更改有效小数位数。默认情况下为 7,因此对于小于 0.0000001 的值,我有很多 0.0000000。
我试过plotOptions.series.dataLabels.formatterand plotOptions.line.dataLabels.formatter,但它们没有用。
然后,我试过plotOptions.line.tooltip.formatter了,但这只接受 HTML,我想设置类似
function() {
return Highcharts.numberFormat(this.y,10);
}