为echarts的上层div设置overflow:hidden, 并设置confine:true
<div class="conent_one_box_title_echarts">
<powerEcharts></powerEcharts>
</div>
<style>
//给Echarts的父元素设置overflow:hidden,
.conent_one_box_title_echarts {
overflow: hidden;
}
</style>
//在Echarts的tooltip中添加
tooltip: {
trigger: "axis",
confine:true // 将 tooltip 框限制在图表的区域内
},