《echarts tooltip移入出现页面抖动》
解决方法如下:
在echarts的那个元素外面加一个div包裹起来,这里需要用overflow:hidden
<div style="overflow: hidden;width: 100%;height: 100%;">
<div class="dbline" id="dbline" :style="{'width':width, 'height':height}"></div>
</div>
然后设置tooltip
tooltip: {
confine:true,
trigger: 'axis',
axisPointer: { // 坐标轴指示器,坐标轴触发有效
type: 'shadow' // 默认为直线,可选为:'line' | 'shadow'
},
},
添加confine:true,