Axes fontsize not changing
14 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (1 件)
AstroGuy1984
2017 年 4 月 27 日
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.
参考
カテゴリ
Help Center および File Exchange で Data Distribution Plots についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!