Re: uitable does not accept placement in subplot
Jens Ruetten <[email protected]>
| Newsgroups | gmane.comp.gnu.octave.general |
|---|---|
| Message-ID | <[email protected]> |
Thank you both, the problem was indeed the target object f, which was defined
elsewhere...
For those interested in the final solution using the subplot grid as
reference:
liveViewer=figure();
stubby=subplot(4,2,4);
stubPos=get(stubby, "position");
delete(stubby);
uitable(liveViewer, "Data", [1 2 3; 4 5 6; 7 8 9], "RowName",
{"a","b","c"}, "ColumnName",...
{"I","II","III"}, "units", "normalized", "position", stubPos);
Cheers
^j
--
Sent from: https://octave.1599824.n4.nabble.com/Octave-General-f1599825.html