1

我正在尝试根据 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);
            }

我知道它正在获取初始值,因为它确实以默认精度开始,但是,当我更改数值时它不会更新。

任何帮助表示赞赏。

4

1 回答 1

0

将我的工具提示代码更改为:

            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, document.getElementById("precision").value);
            }

并摆脱了该功能。似乎工作得很好。

于 2013-06-16T02:50:09.153 回答