如何设置图片标题的字体大小?

我画了一个图,然后用title添加标题,但希望标题的字体大一些。

 Accepted Answer

MathWorks Support Team
MathWorks Support Team on 24 Sep 2020

0 votes

有两种方法来实现,不仅title的标题字体能修改,xlabel等坐标轴说明也可以。
1)使用figure对象及其子对象的属性:
>>plot(1:10)
>>title('My title')
>>xlabel('My label')
>>ax = gca;
>>ax.FontSize = 16;
2)在绘图的时候指定:
>>plot(1:10)
>>title('My title','FontSize',16)
>>xlabel('My label','FontSize',10)

More Answers (0)

Categories

Tags

No tags entered yet.

Community Treasure Hunt

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

Start Hunting!