Merge pull request 'fix:柱状图展示修改;' (#326) from yangws into main

Reviewed-on: #326
This commit is contained in:
yangws 2024-10-17 10:45:32 +08:00
commit 16761d3fc8
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