(echarts)图上数值显示单位
series: [
{
name: '比例',
type: 'bar',
...
label: {
show: true,
position: 'top',
formatter: (params) => params.value + '%' //图上数值显示格式
},
tooltip: { //鼠标移入图上数值显示格式
valueFormatter: function(value) {
return value + ' %'
}
}
},
{
name: '累计比例',
type: 'line',
...
label: {
show: true,
position: 'top',
formatter: (params) => params.value + '%' //图上数值显示格式
},
tooltip: { //鼠标移入图上数值显示格式
valueFormatter: function(value) {
return value + ' %'
}
}
}
]