How to properly position multiple plots within app-designer
Show older comments
I use gridlayout to hold each of the plots, but they go wild quickly. In the attachment is a picture of what it looks like. Please pay attention to the two plots on the top right corner.
Why doesn't app-designer allows me to position the plots like I do with subplots within a figure?
8 Comments
Ankit
on 22 Jan 2020
hows your code looks like?
Mohammad Sami
on 23 Jan 2020
If you have the latest matlab r2019b, you can give tiledlayout a try.
Leon
on 23 Jan 2020
Many thanks! What is the difference between gridlayout and tiledlayout?
Mohammad Sami
on 24 Jan 2020
tiledlayout is specifically for axes. gridlayout can be used with many types of ui elements.
Leon
on 25 Jan 2020
Mohammad Sami
on 25 Jan 2020
In the Design view, drop a Panel in the position you want to place the tiledlayout.
You will have to create in code. Click code view. Click on AppInputArguments, type in varargin. It will create a startup function.
Click on Property and add a property called tiledlayout. (If you want to access it from workspace, make it public)
Inside the function you can create a tiledlayout, and initialise anything else.
function startupFcn(app, varargin)
app.tiledlayout = tiledlayout(app.Panel);
% do anything else you wish to intialise the app
end
Leon
on 25 Jan 2020
Mohammad Sami
on 26 Jan 2020
Edited: Mohammad Sami
on 26 Jan 2020
Yes if your gridlayout was only for the axes, you can replace it with a panel as above. If your gridlayout also contains other uielements, you will need to keep it. just place a panel in the gridlayout in the position where you want to put the tiledlayout.
During creation of the tiledlayout you can specify how many tiles you want.
app.tiledlayout = tiledlayout(app.Panel,m,n);
When you are plotting, use the nexttile to get the axes to plot on
tilenum = 1; % last tile = m*n
ax = nexttile(app.tiledlayout,tilenum); % the first argument specifies which layout to plot on
% you might have multiple tiledlayout on multiple tabs. etc.
% plot(ax,)
Accepted Answer
More Answers (2)
Leon
on 4 Feb 2020
0 votes
Lea Corbova
on 17 Oct 2020
0 votes
I have similar problem, can you help me please?
3 Comments
Leon
on 17 Oct 2020
Lea Corbova
on 17 Oct 2020
Yes, but without a change. Maybe I added it to wrong place?
pbaspect(axes(ii),'auto'); I added it after plot
elseif T<=20
app.TabGroup.SelectedTab = app.Tab2;
app.Tab2.Scrollable = 'on';
[row,col] = find(app.arrayik==1);
L=length(row);
app.GridLayout=uigridlayout(app.Panel,[(ceil(L/3)) 3]);
A = 120*ones(1,(ceil(L/3)));
app.GridLayout.RowHeight=A;
app.GridLayout.ColumnWidth={'1x','1x','1x'};
for ii=1:L
axes(ii) = uiaxes(app.GridLayout, 'HandleVisibility','on');
set(app.GridLayout,'Scrollable', 'on');
signal=app.record(row(ii),:);
fvz=app.infopoint.samples(row(ii));
NN=length(signal);
cas=((1:NN)/(fvz));
h=plot(axes(ii),cas,signal, 'Color',rand(1,3));
pbaspect(axes(ii),'auto');
title(axes(ii),app.nazvy(row(ii)),'Rotation',0,'FontWeight','bold','Color',h.Color);
end
app.GridLayout.Scrollable = 'on';
Lea Corbova
on 18 Oct 2020
Edited: Lea Corbova
on 18 Oct 2020
I already solved this, the problem was with ticks on y axes. I rotate them and the problem was solved. I used:ytickangle(axes(ii),90)
Categories
Find more on Develop Apps Using App Designer in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!