1

我需要设置 Navigator x 轴标签格式化程序,但不起作用?有没有为 Navigator 设置 x 轴标签值?

请看下面的代码

   navigator: {
        handles: {
            backgroundColor: 'white',
            borderColor: 'red',
        },
        labels: {
            align: 'center',
            x: 3,
            y: 16,
            formatter: function () {
                if (((this.value * 4) % 1000) == 0) {
                    if ((((this.value) * 4) / 1000) % 5 == 0) {
                        alert("inside");
                        return (((this.value) * 4) / 1000) + "s";
                    }
                    else {
                        alert("inside else");
                        return (((this.value) * 4) / 1000) + "s";
                    }

                }
                else {
                    return (((this.value) * 4) / 1000) + "s";
                }
            }
        },
        enabled: true,
4

1 回答 1

0

您的labels选项应该嵌套在一个xAxis选项中:

   navigator: {
        handles: {
            backgroundColor: 'white',
            borderColor: 'red'
        },
        xAxis: { // you are missing this level
            labels: {
                formatter: function () {
                    if (((this.value * 4) % 1000) == 0) {
                        if ((((this.value) * 4) / 1000) % 5 == 0) {
                            alert("inside");
                            return (((this.value) * 4) / 1000) + "s";
                        }
                        else {
                            alert("inside else");
                            return (((this.value) * 4) / 1000) + "s";
                        }

                    }
                    else {
                        return (((this.value) * 4) / 1000) + "s";
                    }
                }
            }
        }
    }
于 2013-09-22T12:53:48.577 回答