figureのx軸またはy軸のみの文字サイズを変更する
336 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
figureでplotしたとき,set(gca,'FontSize',20);でグラフ全体の文字サイズは変更できたのですが、
このようにx軸のみ文字サイズを変更することはできるでしょうか?
宜しくお願いします
0 Commenti
Risposta accettata
michio
il 25 Feb 2020
も参考になりますが、XAxis, YAxis プロパティの FontSize をいじれば行けそうです。
例:
plot(rand(20,2));
h_axes = gca;
h_axes.XAxis.FontSize = 20;
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Grid Lines, Tick Values, and Labels in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!