This commit is contained in:
白了个白 2024-10-17 11:28:49 +08:00
commit 6a8b0f82e8
1 changed files with 2 additions and 2 deletions

View File

@ -74,8 +74,8 @@ function initChart() {
position: 'top',
formatter: params => {
const value = dataList.value[params.dataIndex].value;
const percentage = ((value / total) * 100).toFixed(2); //
return `${percentage}%`; //
const percentage = ((value / total) * 100).toFixed(); //
return `${value}${percentage}%`; //
},
color: '#333',
fontSize: 12