File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
services/vm-service/frontend/src/views/vm_cloud_server Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ const getData = () => {
178178 }
179179 d [0 ].deviceData = res .data ;
180180 d [0 ].xData = xData .value ;
181- d [0 ].series [0 ].connectNulls = false ;
181+ d [0 ].series [0 ].connectNulls = true ;
182182 d [0 ].series [0 ].data = yData .value ;
183183 }
184184 }
@@ -188,7 +188,7 @@ const getData = () => {
188188 });
189189 if (d [0 ]) {
190190 d [0 ].xData = xData .value ;
191- d [0 ].series [0 ].connectNulls = false ;
191+ d [0 ].series [0 ].connectNulls = true ;
192192 d [0 ].series [0 ].data = yData .value ;
193193 }
194194 }
@@ -216,7 +216,7 @@ const setXData = (
216216 });
217217 if (d [0 ]) {
218218 d [0 ].xData = res ;
219- d [0 ].series [0 ].connectNulls = false ;
219+ d [0 ].series [0 ].connectNulls = true ;
220220 d [0 ].series .forEach (function (s : any ) {
221221 if (s .name === PerfMetricConst [metricName ].name ) {
222222 s .data = yData ;
@@ -316,7 +316,7 @@ const initEchartsData = () => {
316316 data: [],
317317 type: " line" ,
318318 smooth: false ,
319- connectNulls: false ,
319+ connectNulls: true ,
320320 };
321321
322322 const yUnit = PerfMetricConst [perfMetric ].unit ;
You can’t perform that action at this time.
0 commit comments