This commit is contained in:
‘937886381’
2025-11-14 14:16:43 +08:00
parent 5ddab768ef
commit 3d167e8d71
21 changed files with 717 additions and 144 deletions

View File

@@ -143,8 +143,8 @@ export default {
fontSize: 12,
align: 'left'
},
min: 0,
max: 100,
// min: 0,
// max: 100,
axisTick: { show: false },
axisLabel: {
color: 'rgba(0, 0, 0, 0.45)',
@@ -204,7 +204,7 @@ export default {
color: (params) => {
const dataIndex = params.dataIndex;
const currentFlag = safeFlag[dataIndex] || 0; // 双重保险,防止越界
return currentFlag === 0
return currentFlag === 1
? 'rgba(118, 218, 190, 1)'
: 'rgba(249, 164, 74, 1)';
},