How do I center numbers in a UI Table?

66 ビュー (過去 30 日間)
Brad
Brad 2016 年 6 月 22 日
編集済み: Walter Roberson 2018 年 1 月 28 日
I'm looking at using a UI Table to store numbers up to 5 characters in length. But I'm having problems getting the actual numbers centered within the tables columns. I created a small test case consisteing of the following code;
clear all;
close all;
clc;
data = {'123'; '1234'; '12345'};
f = figure('Position',[200 200 400 150]);
cnames = 'Part Numbers';
rnames = {'First','Second','Third'};
Table = uitable('Parent',f,'Data',data,'ColumnName',cnames,...
'RowName',rnames,'Position',[20 20 360 100],...
'fontname','courier');
In reviewing the documentation for UI Table, it appears there is no way to control the way the characters are placed in the table. They are either left or right justified based on them being characters or numbers.
Is there a way to possibly center the numbers outside of UITable?

採用された回答

Walter Roberson
Walter Roberson 2016 年 6 月 23 日
編集済み: Walter Roberson 2018 年 1 月 28 日

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeWorkspace Variables and MAT-Files についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by