瀏覽代碼

[Mod 0000] 将可配置首页折线图最大最小值的取值范围按要求修改

houzekong 1 月之前
父節點
當前提交
bd7f49d4e0
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. 6 0
      src/views/vent/home/configurable/components/detail/CustomChart.vue

+ 6 - 0
src/views/vent/home/configurable/components/detail/CustomChart.vue

@@ -567,6 +567,12 @@
         yAxis: yAxis.map((e, i) => {
           return {
             ...e,
+            min: (value) => {
+              return parseInt(value.min * 0.8);
+            },
+            max: (value) => {
+              return parseInt(value.max * 1.2);
+            },
             splitLine: {
               lineStyle: {
                 opacity: i === 0 ? 0.1 : 0,