1

ナビゲータの x 軸ラベル フォーマッタを設定する必要がありますが、動作しません。ナビゲータの 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