Changing Fonts Size in Matlab Plots

前端 未结 7 1847
隐瞒了意图╮
隐瞒了意图╮ 2020-12-07 11:55

I want to change Font Size for xlabel, ylabel, axis size, legend font size a.k.a everything at once, is this possible? By default, font is Helvetic

相关标签:
7条回答
  • 2020-12-07 12:25

    To change the title font size, use the following example

    title('mytitle','FontSize',12);
    

    to the change the graph axes label font size, do the following

    axes('FontSize',24);
    
    0 讨论(0)
提交回复
热议问题