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 {
18981898 }
18991899 }
19001900 })
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 ));
19051906
19061907 const scaleYLabels = individualScale .ticks .map (t => {
19071908 return {
You can’t perform that action at this time.
0 commit comments