首页 > 代码库 > echarts-在现实标题中显示百分比

echarts-在现实标题中显示百分比

如图:需要在标题显示所占百分比

技术分享

使用方式:途中标记部分

    series : [{                name: ‘类型‘,                type: ‘pie‘,                radius : ‘55%‘,                center: [‘50%‘, ‘60%‘],                data:valuearray,                itemStyle: {                    emphasis: {                        shadowBlur: 10,                        shadowOffsetX: 0,                        shadowColor: ‘rgba(0, 0, 0, 0.5)‘                    },                    normal:{                         label:{                             show: true,                             formatter: ‘{b} : {c} ({d}%)‘                         },                         labelLine :{show:true}                     }                 }            }        ]

 

echarts-在现实标题中显示百分比