Make a Table in UIAxes

4 views (last 30 days)
Khalala Mamouri
Khalala Mamouri on 28 Aug 2020
Edited: Adam Danz on 28 Aug 2020
Hi,
I am looking for a way to plot a Table directly in UIAxes,
This is my code:
fig = app.UIAxes;
dates = datetime([2016,01,17; 2017,01,20],'Format','MM/dd/uuuu');
m = [10; 9];
tdata = table(dates,m,'VariableNames',{'Date','Measurement'});
uitable(fig,'Data',tdata);
Unfortunately it is not working, and not showing error neither !
Thank you

Accepted Answer

Adam Danz
Adam Danz on 28 Aug 2020
Edited: Adam Danz on 28 Aug 2020
Hm, that should throw an error (but I see that it doesn't).
The uitable should be a child of a "Figure object (default) | Panel object | Tab object | ButtonGroup object | GridLayout object" (parent info). You're setting it as a child of a uiaxes. You probably intended to set it has a child of the figure.
uitable(app.UIFigure,'Data',tdata)
% where app.UIFigure is your figure handle
However, if you're using app designer, the table should typically be created from within app designer and should already exist before you populate it with data. In that case,
app.UITable.Data = tdata
% where app.UITable is a handle to an existing uitable

More Answers (0)

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!