单个系列的Highcharts工具提示总是居中。我可以强迫它是左悬停的标记?

问题描述 投票:0回答:1

Highcharts的例子,它有两个系列。

Highcharts.chart('container', {

    xAxis: {
        categories: [
            'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
            'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'
        ]
    },

    tooltip: {
        shared: true
    },

    series: [{
        data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
    }, {
        data: [216.4, 194.1, 95.6, 54.4, 29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5]
    }]
});

1 - 将鼠标悬停在系列上,工具提示总是出现在左边(除非在视口的边界)2 - 点击其中一个图例项来隐藏1行3 - 将鼠标悬停在单行上。 我注意到工具提示总是在标记的中心位置。

我怎样才能使工具提示总是悬停在标记的左边。

highcharts
1个回答
0
投票

你可以使用 tooltip.positioner 回调以达到预期的效果。

演示。https:/jsfiddle.netBlackLabel9of37Lyx。

tooltip: {
    shared: true,
    positioner(labelWidth, labelHeight, point) {
      return {x: point.plotX - labelWidth / 2, y: point.plotY}
    }
},

API。https:/api.highcharts.comhighchartstooltip.positioner。

© www.soinside.com 2019 - 2024. All rights reserved.