在进行多个绘图(subplot()
,plotyy()
,...)时,如何调整图中所有文字的字体大小?
我目前正在使用
ax = findobj(gcf,'type','axes');
set(ax,'FontSize',13);
但想扩大规模(标题,标签......)
答案 0 :(得分:1)
答案 1 :(得分:1)
您可以搜索具有FontSize
属性的任何对象,而不是搜索对象。
set(findobj(gcf,'-property','FontSize'),'FontSize',13)
将所有内容设为13分。如果你想扩大一个因素,那就更多了。