Setting Position of uiaxes within uipanel

11 ビュー (過去 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 Center および File ExchangeInteractive 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