in MATLAB 20, the legend command no longer adds a black border. How do you manually add one?
Show older comments
Hello,
I have recently updated to the newest release and the black boarder that normally sourrounded the legend is now gone.
I have also noticed that the markers and linestyles are missing when plotting a linear model using fitlm.
How does one add the black boarder to the legend?
This happends with the simple commands
plot(1:3,1:3)
legend('Hi')
4 Comments
dpb
on 10 Apr 2020
Haven't installed R2020x as yet so can't test but nothing in documentation indicates and would be very surprising for that to have changed.
What does
figure
plot(1:3,1:3)
hLg=legend('Hi');
hLg.Box
hLg.EdgeColor
return? Default is still listed as 'On' and 0.15*[1 1 1] in the R2020 documentation online and is behavior going back to "since forever" of the new legend object.
Matt Schramm
on 10 Apr 2020
hLg.EdgeColor = [1.0,1.0,1.0]
would make the box outline white which is what default background is here. So that would definitely make invisible.
What about
hLg.Box='on'; % just to be sure
hLg.EdgeColor='k'; % Set it to black [0 0 0]
If that doesn't show up, that's either a bug or an installation problem re: graphics rendering.
hLg.Box='off';
pause(1)
hLg.Box='on';
should make the surrounding box of the legend go away and return after a second.
Submit bug report if a restart doesn't solve it.
I thought just maybe had managed to somehow get a default property set so the box color default was same as background or something like that.
Matt Schramm
on 10 Apr 2020
Accepted Answer
More Answers (0)
Categories
Find more on Legend in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!