我的问题与this post完全相同。当图表低于特定大小时,上下文菜单会隐藏。接受的答案是:
.highcharts-contextmenu {
bottom: auto !important;
top: 5px;
}
可以向下设置菜单。但如果图表很小,它仍然是隐藏的。这样的事情:FIDDLE。
有人可以帮忙吗?感谢。
答案 0 :(得分:1)
您需要覆盖highcharts-1容器上的z-index和overflow
#highcharts-0 {
overflow:visible!important;
z-index:1!important;
}
答案 1 :(得分:1)
我修改了Sebastian Bochans对此的回答并且有效:
.highcharts-container {
overflow:visible!important;
z-index:1!important;
}