XTICKLABEL_ROTATE90

버전 1.0.0.0 (2.01 KB) 작성자: Denis Gilbert
Rotate numeric Xtick labels by 90 degrees.
다운로드 수: 9.9K
업데이트 날짜: 2003/3/25

라이선스 보기

When the XTick labels are long numbers that overlap, making them hard to read or distinguish from one another, you may need to use XTICKLABEL_ROTATE90 in order to orient the tick labels vertically rather than horizontally.

Example 1: Set the positions of the XTicks and rotate them.

figure;
plot([1960:2004],randn(45,1));
xlim([1960 2004]);
xticklabel_rotate90([1960:2:2004]);
%Set "Property-value" pairs
xticklabel_rotate90([1960:2:2004],'Color','m');

Example 2: Rotate XTickLabels at their current position

XTick = get(gca,'XTick');
xticklabel_rotate90(XTick);

인용 양식

Denis Gilbert (2024). XTICKLABEL_ROTATE90 (https://www.mathworks.com/matlabcentral/fileexchange/3150-xticklabel_rotate90), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R13
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Axis Labels에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0

1) Fontsize is now set equal to the default axes fontsize.

2) Vectorization of text command

3) Now allows for the specification of text property-value pairs, as suggested by Urs Schwarz.