How I can do auto-resized axes in App Designer?

조회 수: 16 (최근 30일)
Pavel M
Pavel M 2022년 2월 20일
댓글: Ivan Demec 2024년 10월 29일
Hello! I have done app by AppDesigner, and main window (figure) is resized. But Axes with plots dont change their size. How it may be fix?

답변 (2개)

Lucas Chomey
Lucas Chomey 2023년 2월 13일
Do the command:
axis(app.UIAxes1,"auto"); % UIAxes1 is just the name of the plot window
For auto adjusting the plot window to show all data being plotted.
  댓글 수: 2
David
David 2023년 6월 30일
Hello. I have the same problem than Pavel.
The 2 answers does not solve the problem. Concerning "normalise", like Pavel, I don't find these options.
And the solution with axis, doesn't work for this problem because it s not to fit to the data in the uiaxes. The problem is when the uifigure is resized, the uiaxes doesn't resize well.
Thank you all for your reply because I tried lot of things without success.
Ivan Demec
Ivan Demec 2024년 10월 29일
For me Lucas' solution works just fine in v2024b Update1.

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


Rik
Rik 2022년 2월 20일
You should confirm the units property of your axes is set to normalized. If this is not possible you will have to use a listener that will resize the axes when the figure changes size.
  댓글 수: 3
David
David 2023년 6월 30일
Hi Linus! I didn't find too these options? Did you find something? Thanks!
Ramanan
Ramanan 2024년 1월 11일
편집: Ramanan 2024년 1월 12일
Unfortunately, the app designer UI doesn't provide you with the option to change the units property. Alternatively, you can create a panel in the app designer window and place the UIAxes under the panel. Then in the startup function, add the below commands.
app.UIAxes.Units = "normalized"; % Changes units to scalable
app.UIAxes.Position = [0 0 1 1]; % Position [x,y] = [0,0] and [Xsize,YSize] = [1 1] of the parent object (Panel element)
It worked for me.

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

카테고리

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

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by