series:[
{
name: ‘成单率‘,
type: ‘line‘,
data: valueArr2,
itemStyle: {
normal: {
label: {
show:true,
position: ‘top‘,
textStyle: {
color: ‘#333‘
},
formatter: function(params) {
if(params.value){
return params.value + ‘%‘
}else{
return ‘‘;
}
}
},
color:‘#ee8b3f‘
}
}
}
]
时间: 2024-10-13 00:08:37