echarts饼图解决数据指示线重叠问题

使用饼图时候,当有些数据少的时候,就会造成指示线的数据重叠问题。
avoidLabelOverlap属性设置为true

 series: [
                    {
                        name: '分布图',
                        type: 'pie',
                        radius: ['25%', '48%'],
                        center: ['50%', '58%'],
                        avoidLabelOverlap: true,
                        label: {
                            normal: {
                                formatter: a => {
                                    return (a.data['value'] + '人(' + a.data['prtio'] + '%)')
                                },
                                show: true,
                                position: 'left',
                                color: '#999999'
                            },
                        }
         ]    

  

posted @ 2022-08-01 09:40  紫诺花开  阅读(2385)  评论(0编辑  收藏  举报