Labels out of the box in figures
조회 수: 8 (최근 30일)
이전 댓글 표시
Hello,
When I try to resize the box figure, using Matlab 2016, the labels go out of the box (See xlabel in the bodeplot bellow). I didn't have this problem in any of the Matlab previous versions. Can I fix this? How should I proceed?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/160000/image.png)
Even the axis get cut depending on how I resize the figure (shown in figure bellow).
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/160002/image.png)
댓글 수: 2
John Chilleri
2017년 1월 20일
편집: John Chilleri
2017년 1월 20일
I've had similar encounters, but when I save the figure as an image, it has always included everything.
답변 (1개)
Niels
2017년 1월 20일
Hi,
you can access the properties of the axis and change the fontsizes (there are lots off/ + multipliers) Axes Properties
read the paragraph about Font Style and the following about Title, Axis Labels, and Legend
you can do it by either the Children prop of the figure or the Parent prop of the plot
Fig1=figure; % then plot something, set label etc
Fig1.Children.FontSize=??? % whatever
or
h=plot(...)
h.Parent.FontSize=???
댓글 수: 3
참고 항목
카테고리
Help Center 및 File Exchange에서 Annotations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!