Axes fontsize not changing
16 views (last 30 days)
Show older comments
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?
0 Comments
Answers (1)
AstroGuy1984
on 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.
See Also
Categories
Find more on Data Distribution Plots in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!