File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -1898,10 +1898,11 @@ export default {
1898
1898
}
1899
1899
}
1900
1900
})
1901
- const curve = this .createSmoothPath (plots);
1902
- const autoScaleCurve = this .createSmoothPath (autoScalePlots);
1903
- const straight = this .createStraightPath (plots);
1904
- const autoScaleStraight = this .createStraightPath (autoScalePlots);
1901
+
1902
+ const curve = this .createSmoothPath (plots .filter (p => p .value !== null ));
1903
+ const autoScaleCurve = this .createSmoothPath (autoScalePlots .filter (p => p .value !== null ));
1904
+ const straight = this .createStraightPath (plots .filter (p => p .value !== null ));
1905
+ const autoScaleStraight = this .createStraightPath (autoScalePlots .filter (p => p .value !== null ));
1905
1906
1906
1907
const scaleYLabels = individualScale .ticks .map (t => {
1907
1908
return {
You can’t perform that action at this time.
0 commit comments