when using legend in a plot in live script, the font size becomes small.Why?
1 view (last 30 days)
Show older comments
I use matlab R2019a.
When legend used, the result is like this:
when legend NOT used, the result is like this:
Why does this happen?
This didn't happen when I tried this with R2017b in my coworker's computer and with R2019b in my computer.
0 Comments
Answers (1)
Etsuo Maeda
on 22 Nov 2019
This is a known issue in Live Editor from R2019a.
As a workaround, please avoid to use the graphics root object "groot" ( = 0) to set FontSize of your single figure. FontSize property in the axes object will help you to set your FontSize.
Also plese note that "groot" changes ROOT settings of the graphics object in MATLAB. I recommend you not to use "groot" casually.
h = plot(1:10);
ax = gca;
ax.FontSize = 20;
legend(ax, 'FontSize', 20)
HTH
0 Comments
See Also
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!