help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: uitable does not accept placement in subplot


From: Jens Ruetten
Subject: Re: uitable does not accept placement in subplot
Date: Wed, 23 Sep 2020 06:22:55 -0500 (CDT)

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]