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

7 visualizaciones (últimos 30 días)
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.

Respuestas (1)

Etsuo Maeda
Etsuo Maeda el 22 de Nov. de 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

Community Treasure Hunt

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

Start Hunting!

Translated by