历史趋势添加值类型

This commit is contained in:
GGJ
2024-10-24 19:39:15 +08:00
parent f74634de71
commit abac6bd5f4
5 changed files with 23 additions and 6 deletions

View File

@@ -13,6 +13,9 @@ export const yMethod = (arr: any) => {
} else {
min = Math.floor(minValue / 100) * 100
}
} else if (maxValue == minValue && maxValue != 0 && minValue != 0) {
max = Math.ceil(maxValue / 10 + 1) * 10
min = Math.floor(minValue / 10 - 1) * 10
} else {
max = Math.ceil(maxValue / 10) * 10
min = Math.floor(minValue / 10) * 10