Column Format in UI Table
113 ビュー (過去 30 日間)
古いコメントを表示
I have table array in data of UI table.
There are a few columns in my table:
Num1 Num2 Text
5.2345 4.2345 JN
-> I would like to have only two decimals in the first two columns. What is the best way to pull this of? I would like that data in the UI table remains table array.
0 件のコメント
採用された回答
Ankit
2019 年 9 月 30 日
編集済み: Ankit
2019 年 9 月 30 日
hey,
you can set the format of your table as follows using 'ColumnFormat' property. Are you looking for something like this?
Case: Programatically creating GUI
f = figure('Position', [100 100 752 250]);
t = uitable('Parent', f, 'Position', [25 50 700 200]);
t.ColumnName = {'Num1','Num2','Text'};
t.Data = {5.2345, 4.2345,'JN'};
t.ColumnFormat = {'bank' 'bank' []};
Case: StartupFcn as follows (App Designer)
function StartUpFunction(app)
app.UITable.Data = {5.2345, 4.2345,'JN'};
app.UITable.ColumnFormat = {'bank' 'bank' []};
end
regards
Ankit
0 件のコメント
その他の回答 (2 件)
Navya Seelam
2019 年 9 月 27 日
Hi,
You can use format as shown below.
format bank
table.Data=table.Data % to update the table data to current format
6 件のコメント
Walter Roberson
2019 年 10 月 3 日
The format command has no effect on graphics. You should follow Ankit's solution
Navya Seelam
2019 年 10 月 3 日
Hi,
The issue can be resolved by passing the data to uitable from cell array rather than table.
3 件のコメント
jesus pacheco
2022 年 1 月 11 日
@Klemen Peter Kosovinc Hi Bro, I have the same Problem. could you solve it?
参考
カテゴリ
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!