when using legend in a plot in live script, the font size becomes small.Why?

7 ビュー (過去 30 日間)
Yuki Koyama
Yuki Koyama 2019 年 11 月 19 日
回答済み: Etsuo Maeda 2019 年 11 月 22 日
I use matlab R2019a.
When legend used, the result is like this:
fdsfsda.png
when legend NOT used, the result is like this:
saf.png
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.

回答 (1 件)

Etsuo Maeda
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

カテゴリ

Help Center および File ExchangeLegend についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by