Axes fontsize not changing

21 Ansichten (letzte 30 Tage)
Tamara Schlosser
Tamara Schlosser am 27 Apr. 2017
Kommentiert: Tamara Schlosser am 28 Apr. 2017
On my laptop (with an external nvidia graphics card) I cannot change the axes font size. For example the command:
axes('position',[.1 .1 .8 .8],'FontSize',8)
Produces an axes with the default size 10 font size, not 8. If I run the exact same code on my work PC it works perfectly. Labels and legends are generated with the correct font size. I'm using matlab R2017a on my laptop and R2013b on my work PC, but I think the issue is my graphics card as I've had other issues previously. Do I need to change its settings?

Antworten (1)

AstroGuy1984
AstroGuy1984 am 27 Apr. 2017
A possible workaround may be to try:
figure('DefaultAxesFontSize', 10);
axes('Position', [.1,.1,.8,.8]);
Out of curiosity to the issue are you stepping through it and seeing that the fontsize command is being ignored? Because it's possible that it's getting reset elsewhere.
  1 Kommentar
Tamara Schlosser
Tamara Schlosser am 28 Apr. 2017
Thanks for your response. It seems I can use the above command to change the axes font size.
I'm finding the fontsize command is being ignored as I step through, it never changes. So far the fontsize commands are only ignored when called through axes...

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Graphics Performance finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by