我正在尝试根据 html 中的数字输入来更新我的 Highcharts 工具提示中值的精度。我调用我的 JS 函数 onchange of the number,但它似乎不起作用。这是html:
<div id="btnDiv">
<div align="right">
Display Precision (1-5)<input type="number" id="precision" min="1" max="5" value=3 onchange="updatePrecision()">
</div>
</div>
这是功能:
var displayPrecision = document.getElementById("precision").value;
function updatePrecision() {
displayPrecision = document.getElementById("precision").value;
}
这是设置工具提示的 Highcharts 函数的一部分:
tooltip: {
formatter: function() {
return '<b>'+ this.series.name +'</b><br/>'+
Highcharts.dateFormat('%Y-%m-%d %H:%M:%S', this.x) +'<br/>'+
Highcharts.numberFormat(this.y, displayPrecision);
}
我知道它正在获取初始值,因为它确实以默认精度开始,但是,当我更改数值时它不会更新。
任何帮助表示赞赏。