@@ -147,9 +147,9 @@ export default {
} else if (minG <= 5) {
this.dataY1Min = String(minS) + '0'
}
- if (maxG > 5) {
+ if (maxG >= 5) {
this.dataY1Max = String(maxS + 1) + '0'
- } else if (maxG <= 5) {
+ } else if (maxG < 5) {
this.dataY1Max = String(maxS) + '0'
})