longyvfengyun
2023-11-17 14738594692929f696eab3b2726547659506baf7
src/components/echarts/options/gradientLine.js
@@ -42,7 +42,7 @@
        if(isNaN(min)) {
          return 0;
        }else {
          return min * option.minRatio;
          return (min * option.minRatio).toHold(0);
        }
      },
      max(data) {
@@ -50,7 +50,7 @@
        if(isNaN(max)) {
          return 1;
        }else {
          return max * option.maxRatio;
          return (max * option.maxRatio).toHold(0);
        }
      },
      axisLabel: {