필터 지우기
필터 지우기

enlarge the fonts of all elements in the app designer project

조회 수: 6 (최근 30일)
Luca Re
Luca Re 2023년 6월 13일
댓글: Luca Re 2023년 6월 14일
hi..it is possible to enlarge the fonts of all the elements without doing it individually?
  댓글 수: 1
Luca Re
Luca Re 2023년 6월 14일
i follow this link:
Change font size of every components in uifigure(app designer) by following the uifigures's size - MATLAB Answers - MATLAB Central (mathworks.com)
i try to apply it in my code, but i receive error

댓글을 달려면 로그인하십시오.

답변 (1개)

Lohit
Lohit 2023년 6월 13일
If this is a plot with texts at specific positions, then you can use a similar line of code after your 'plot' command:
text(x_label_2,y_label_2,num2str('Label 2'),'FontSize',22);
The first 2 indices are the position coordinates of the point at which you want to display 'Label 2', 3rd index is the text you wish to see and then the font size can be altered further down the line.

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by