HighCharts: Labels visible over tooltip

前端 未结 7 1698
离开以前
离开以前 2020-12-01 09:45

Labels on my chart are showing over tooltip, which doesn\'t look very nice. I tried to play with zIndex, but to no result. How can I make tooltips not transpare

7条回答
  •  [愿得一人]
    2020-12-01 10:09

    I still had issues with some of the solutions around, setting z-index: 999 on .tooltip wasn't having any effect because of the various container divs. But, I've found setting this works nicely (when legend and tooltip are HTML). No need for setting other z-indexes either:

    .highcharts-legend { z-index: -1; }

提交回复
热议问题