diff --git a/matlab/reports/@graph/createGraph.m b/matlab/reports/@graph/createGraph.m index 4431c63b6a40b8e73e7ba562216a04e1516efccc..922327441fee1c665bc892882e3360866eefd535 100644 --- a/matlab/reports/@graph/createGraph.m +++ b/matlab/reports/@graph/createGraph.m @@ -105,7 +105,8 @@ end if o.zeroline a = ylim; if 0 > a(1) && 0 < a(2) - plot(xlim, [0 0], 'color', 'k', 'LineWidth', 0.25); + lh = line(xlim, [0 0], 'color', 'k', 'LineWidth', 0.25); + uistack(lh, 'bottom'); end end drawnow;