when using legend in a plot in live script, the font size becomes small.Why?
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
Etsuo Maeda
2019-11-22
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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Legend 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!