Browse Source

Merge branch 'bug7794' into debug

shanbinzhang 1 tháng trước cách đây
mục cha
commit
ce4a60dfa1
1 tập tin đã thay đổi với 3 bổ sung3 xóa
  1. 3 3
      src/hooks/chart/render.js

+ 3 - 3
src/hooks/chart/render.js

@@ -1425,9 +1425,9 @@ function setStackOrCombinChart(e){
             LatestValue:item.LatestValue,
             ...predict_params,
             stacking,
-            threshold: e.ChartInfo.ChartType==3
-                ?(item.ChartScale?Number(item.ChartScale):0)
-                :null
+            threshold: (e.ChartInfo.ChartType===3&&item.ChartScale)
+                ? Number(item.ChartScale)
+                : 0
         }
         item.DataList = item.DataList || [];
         for (let i of item.DataList) {