How can I increase the number of decimal places displayed on app designer UITable?
22 次查看(过去 30 天)
显示 更早的评论
I am working on an app that ultimately produces 4 separate tables, each containing 4 columns of data. For simplicity, I am only including a single example, as I would think the process should be identical for all 4 tables, aside from the name of each table. All of the tables currently only show 4 decimal places. I would like to show more than this. I tried putting the following code in my startup function:
function startupFcn(app)
clc
close all
app.UITable.ColumnFormat = {'long','long','long','long'}; %4x 'long' - 1 for each column?
This does not seem to work, as all of the tables still only display 4 decimal places. Any help would much appreciated. Thank you.
0 个评论
采纳的回答
Voss
2024-8-15
编辑:Voss
2024-8-15
Maybe some code is modifying the uitable after the startupFcn executes, because the code you've shown should work.
Here it is working with uitables in figures (since uifigures can't be created in the forum environment):
data = rand(3,4);
n_col = size(data,2);
f_args = {'Position',[10 10 840 100]};
t_args = {'Units','normalized','Position',[0 0 1 1], ...
'ColumnWidth',repmat({200},1,n_col),'Data',data};
% a table with default ColumnFormat
f = figure(f_args{:});
t = uitable(f,t_args{:});
% another table, identical to the first, except with ColumnFormat 'long'
f = figure(f_args{:});
t = uitable(f,t_args{:});
t.ColumnFormat = repmat({'long'},1,n_col);
I have also confirmed that it works with uifigures in R2022a.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Develop Apps Using App Designer 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!