Skip to content

Commit 750223c

Browse files
committed
Modification - VueUiXy - Only show singles out datapoints when cutNullValues is enabled on line types
1 parent aa8eafe commit 750223c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/vue-ui-xy.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1351,7 +1351,7 @@ function isPlotAlone(plotSeries, index) {
13511351
13521352
let isAlone = (!!before && !!after && before.value == null && after.value == null) || (!before && !!after && after.value == null) || (!!before && !after && before.value == null);
13531353
1354-
return canShowValue(plotSeries[index].value) && isAlone;
1354+
return canShowValue(plotSeries[index].value) && isAlone && FINAL_CONFIG.value.line.cutNullValues;
13551355
}
13561356
13571357
/******************************************************************************************/

0 commit comments

Comments
 (0)