1

ツールチップ フォーマッタを使用すると、シリーズの名前と値の両方を表示できますが、plotoptions イベントの mouseover を使用して同じことを行うと、シリーズの名前と値を取得できません。

ツールチップ:フォーマッター

PlotOption :マウスオーバー

                            mouseOver: function () {
                            $.each(this, function (i, e) {
                            $reporting.html('x: ' + this.x + 'Category: ' + this.series.name + ', y: ' +Highcharts.numberFormat(Math.abs(this.y)));
                                });
                        } 
4

1 に答える 1