Make a Table in UIAxes

5 Ansichten (letzte 30 Tage)
Khalala Mamouri
Khalala Mamouri am 28 Aug. 2020
Bearbeitet: Adam Danz am 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

Akzeptierte Antwort

Adam Danz
Adam Danz am 28 Aug. 2020
Bearbeitet: Adam Danz am 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

Weitere Antworten (0)

Kategorien

Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange

Produkte


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by