Is the margin between the Axes' Position and OuterPosition uncontrollable?

조회 수: 3 (최근 30일)
cnrvx732
cnrvx732 2021년 4월 7일
답변: Akiko 2021년 4월 8일
When I run the following code, the result is as shown in the attached image (margins are filled in with Paint for clarity). Is it possible to adjust the height and width of the OuterPostion to the same height and width of the TightInset to eliminate unnecessary margins?
plot(rand(1,20))
ax = gca;
ax.Position(1)=0;
ax.OuterPosition(1)=0;
ax.OuterPosition(3)=1;

채택된 답변

Akiko
Akiko 2021년 4월 8일
You can refer the following documentation.
(To see this page, please login MathWorks Account.)
FYI:
ax = gca;
outerpos = ax.OuterPosition;
ti = ax.TightInset;
left = outerpos(1) + ti(1);
bottom = outerpos(2) + ti(2);
ax_width = outerpos(3) - ti(1) - ti(3);
ax_height = outerpos(4) - ti(2) - ti(4);
ax.Position = [left bottom ax_width ax_height];

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!