悬浮样式修改
tooltip: {
textStyle:{
fontSize:14,
color:'#fff'
},
backgroundColor: 'rgba(51, 51, 51, 0.7)',
// borderColor: 'rgba(51, 51, 51, 0.7)',
borderWidth:0,
trigger: 'item',
formatter: function (val) {
console.log(val)
let res=`<div>
<span>分类 : ${val.name}</span>
<div style="margin-top: 10px">${val.marker} 占比 : ${val.percent}%</div>
<div style="margin-left: 18px">人数 : ${val.value}</div>
</div>`
return res
}
},