Echarts在ios13系统中tooltip(气泡)在折线下的问题

时间:2020-03-30 16:37:11   收藏:0   阅读:217

echarts tooltip is covered by canvas on iOS13 

问题:

技术图片

 

 解决办法:在tooltip配置项中加如下5,6,7行代码

1  tooltip: {
2             trigger: "axis",
3             confine: true,
4             formatter: "{b}月: {c}万元",
5             position: function(point, params, dom, rect, size) {
6               dom.style.transform = "translateZ(0)";
7             }
8           },       

说白了用 !important 强制覆盖 echarts 容器中的样式,去掉 overflow,

给tooltip的div添加css属性transform: translateZ(0);

技术图片

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!