lxh 3 日 前
コミット
5cfd4fc023
1 ファイル変更3 行追加3 行削除
  1. 3 3
      src/views/vent/home/colliery/components/wind-monitor.vue

+ 3 - 3
src/views/vent/home/colliery/components/wind-monitor.vue

@@ -54,7 +54,7 @@ function getOption() {
         containLabel: true,
         left: 30,
         right: 30,
-        bottom: echartData.xdata.length > 10 ? 30 : 15,
+        bottom: echartData.xdata.length > 8 ? 30 : 15,
         top: 40,
       },
 
@@ -222,10 +222,10 @@ function getOption() {
       ],
       dataZoom: [{
         // 这部分是关键
-        show: echartData.xdata.length > 10 ? true : false,
+        show: echartData.xdata.length > 8 ? true : false,
         type: 'slider', // 这里可以选择你需要的类型,例如 'inside'
         start: 0, // 数据窗口范围的起始百分比
-        end: echartData.xdata.length > 10 && echartData.xdata.length < 20 ? 50 : echartData.xdata.length > 20 ? 25 : 100, // 数据窗口范围的结束百分比
+        end: echartData.xdata.length > 8 && echartData.xdata.length < 16 ? 50 : echartData.xdata.length > 16 ? 25 : 100, // 数据窗口范围的结束百分比
         height: 10, // 设置缩放条高度
         left: 'center',
         bottom: 25,