HighCharts:为小图表隐藏的上下文菜单

时间:2013-06-13 09:26:50

标签: highcharts

我的问题与this post完全相同。当图表低于特定大小时,上下文菜单会隐藏。接受的答案是:

.highcharts-contextmenu {
    bottom: auto !important;
    top: 5px;
}

可以向下设置菜单。但如果图表很小,它仍然是隐藏的。这样的事情:FIDDLE

有人可以帮忙吗?感谢。

2 个答案:

答案 0 :(得分:1)

您需要覆盖highcharts-1容器上的z-index和overflow

http://jsfiddle.net/xBUXK/16/

#highcharts-0 {
    overflow:visible!important;
    z-index:1!important;
}

答案 1 :(得分:1)

我修改了Sebastian Bochans对此的回答并且有效:

.highcharts-container {
   overflow:visible!important;
   z-index:1!important;
}
相关问题