uitable and use within a figure created with the function figure

94 views (last 30 days)
I have been attempting to use the function uitable to print a table on a figure generated with the "figure" command.
The table data is within the variable tableData and the function call is
figID = figure;
uitable( figID_Comb, 'Data', tableData, 'Position', [300, 400, 200, 300]);
When I use this call, I get the message
Error using uitable
Functionality not supported with figures created with the figure function. For more information, see Graphics
Support in App Designer.
The help information on the uitable functions states: uit = uitable creates a table user interface component in the current figure and returns the Table UI component object. If there is no figure available, MATLAB® calls the figure function to create one.
The error message and the help information are contradictory - I believe.

Answers (2)

Sahithi Kanumarlapudi
Sahithi Kanumarlapudi on 27 Jan 2021
Hi,
As the error message suggests, 'uitable' cannot be used with figures created using 'figure' function.
I have brought the issue related to the help function on uitable to the notice of our developers. They will investigate the matter further.
  1 Comment
Frank
Frank on 14 Dec 2021
I concur with Jeffrey. The documentation and implementation are contradictory and even the examples have been difficult to emulate. As of right now, uitable use in normal work (i.e. not constructing an app but just generating figures for publication and such) is not an option for me and I simply do not try to use it anymore. It would be nice if it was easier to use.

Sign in to comment.


Walter Roberson
Walter Roberson on 14 Dec 2021
There is no contradiction. The bit about creating a figure if none is available only applies if no parent is specified. You are supplying a parent.
After that you need to look at the details for the Data option, which says,
You are not using a uifigure as the parent.
If there is a fault in the documentation it would be that in the case
uit = uitable(Name,Value) specifies property values of the table UI component using one or more name-value pair arguments.
that it does not explicitly repeat the bit about looking for a parent... in the syntax summary list.
  2 Comments
Frank
Frank on 15 Dec 2021
OK. The end result is that with the current documentation/feature set, I just don't use it. But I am just focusing on presenting my specialty area, physics, not programming. I have been using matlab since before it was matlab, just gestating in eisspack, linpack, or minpack. From this user's perspective, it is easier to put tables elsewhere in my work products.
Walter Roberson
Walter Roberson on 15 Dec 2021
uitable() for traditional figures accepts a cell array. You can use table2cell() to convert a table object to a cell array. You would not get features like the ability to sort by clicking on table headers, but that should not matter for publication purposes.
Custom color of cells inside uitable() for uifigure() is a much nicer interface than what is available with cell arrays in uitable() for traditional figures, and that does make a difference for publication.

Sign in to comment.

Categories

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

Tags

Products

Community Treasure Hunt

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

Start Hunting!