MATLAB: Errorbar plot has no connecting lines

errorbarMATLABplot

I just used the example from doc,
x = 1:10:100;
y = [20 30 45 40 60 65 80 75 95 90];
err = 8*ones(size(y));
errorbar(x,y,err)
However, the figure has no connecting lines, unlike the documentation:

Best Answer

It is fixed in R2016b.