echarts 饼图 labelLine tips展示被遮住

解决方法

将饼图的长度调短

series: [{
  name: '',
  type: 'pie',
  radius: '55%',
  center: ['50%', '60%'],
  itemStyle: {
    normal: {
      label: {
        show: true,
      },
      labelLine: {
        show: true,
        length:0.001
      }
    }
  },

  

原文地址:https://www.cnblogs.com/isme-zjh/p/14011697.html