Make a Table in UIAxes

6 次查看(过去 30 天)
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

采纳的回答

Adam Danz
Adam Danz 2020-8-28
编辑:Adam Danz 2020-8-28
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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

产品


版本

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by