Highcharts tooltip overflow is hidden

后端 未结 6 981
[愿得一人]
[愿得一人] 2020-12-09 01:42

My problem is that when the chart drawing area of is smaller than a highchart tooltip, a part of the tooltip is hidden where it overflows the chart drawing area.

I w

6条回答
  •  难免孤独
    2020-12-09 02:13

    I recently got the same problem, but with bootstrap container ! (bs3)

    None of those solutions worked but I found by my own.

    Its due to bootstrap _normalizer properties

    svg:not(:root) {
      overflow: hidden !important;
    }
    

    So add both :

    .highcharts-container, svg:not(:root) {
        overflow: visible !important;
    }
    

提交回复
热议问题