Setting Position of uiaxes within uipanel

조회 수: 12 (최근 30일)
Eric Snyder
Eric Snyder 2021년 12월 31일
댓글: Rik 2022년 1월 6일
I want to create a GUI with variable numbers of uipanels depending on how many datasets are being examined (for instance, data from 4 instruments would display 4 uipanels.
Each panel should have a uislider and a plot displaying the data. Here's my code so far:
fig = uifigure('Name', 'Brush Detections');
fig.WindowState = 'maximized';
grd = uigridlayout(fig, [nplot, 1]);
% t{instrumentNumber} and x{instrumentNumber} are the time and amplitude data form each instrument
for iplot = 1:numInstruments
p(iplot) = uipanel(grd, 'Title', ['Receiver ', num2str(iplot)]);
% pause(2)
sld(iplot) = uislider(p(iplot), 'Position', [10, 30, 150, 3]);
ax(iplot) = uiaxes(p(iplot), 'Position', [180, 3, p(iplot).Position(3)-200, p(iplot).Position(4)-20]);
plot(ax(iplot), t{iplot}, x{iplot});
hold off
end
I'm trying to set the uiaxes to fill the remainder of the uipanel, but for some reason p(iplot).Position gives the incorrect value for the panel position. I believe this is because MATLAB hasn't finished executing all the uipanel properties before trying to execute the subsequent lines. I can get it to work properly most of the time if I put a "pause" after the p(iplot) = uipanel(grd, 'Title', ['Receiver ', num2str(iplot)]);, but the pause has to be over 2 seconds long to work consistently. Is there a way to pause only until the panel is fully generated? Or to link the uiaxes position to the uipanel position so if one updates the other does to? If the user resizes the uifigure window, it would be nice if the plot and sliders resized proportionally, too, if possible.

채택된 답변

Rik
Rik 2021년 12월 31일
For automatically updating positions you should set the unit property to normalized.
As for the elements not being fully initialized, you could experiment with drawnow to force a graphics update.
  댓글 수: 4
Eric Snyder
Eric Snyder 2022년 1월 5일
Thanks! I accepted your answer because you actually gave me two working solutions.
First solution: Adding drawnow after creating the uipanel works as long as the uifigure doesn't already exists. For whatever reason, if the uifigure already exists when I try to set those positions, it calculates the positions incorrectly.
Second solution: using figure instead of uifigure. I had initially done this, but the slider callbacks weren't working and I thought it had something to do with using a figure instead of a uifigure. It turns out I just had the callbacks programmed wrong. I'm not sure what the benefit of uifigure is either.
The AppDesigner was too limiting for me since I need a variable number of panels, depending on how many sensors are being used. But both of these suggestions seems to be doing the trick now.
Rik
Rik 2022년 1월 6일
Glad to be of help

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by