高图表甘特图中的工具提示

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

我在滚动时遇到甘特图高图工具提示问题。

This is the problem

正如您在图片中看到的,工具提示位于甘特图后面,我尝试了这个代码片段,但它不起作用:

// JS

tooltip: {
    style: {
        zIndex: 9999
    }
},

这是我的完整代码:https://jsfiddle.net/carmaro/ygvza0Lm/4/

javascript highcharts highcharts-gantt
1个回答
0
投票

最简单的解决方案是启用工具提示的

outside
选项。例如:

tooltip: {
    outside: true,
    ...
}

现场演示:https://jsfiddle.net/BlackLabel/r5jf0v96/

API 参考: https://api.highcharts.com/highcharts/tooltip.outside

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