How to locate the data in the middle of the column- uitable?
조회 수: 41 (최근 30일)
이전 댓글 표시
Im trying to make a table by using uitable. How can I put the data in the middle of the column instead of the matlab defult- in the right? thanks
댓글 수: 1
Jan
2015년 9월 21일
What does "put" mean here? Do you mean the initial position of the cursor or do you define the "Data" property of the uitable?
답변 (2개)
Jasmine Poppick
2023년 3월 17일
Starting in R2019b, you can specify table text alignment using addStyle. Create a style object with a specified HorizontalAlignment value using uistyle. You can then add the style to the whole table, or to specific rows, columns, or cells.
For example:
fig = uifigure;
t = uitable(fig,"Data",magic(3));
s = uistyle("HorizontalAlignment","center");
addStyle(t,s)
Walter Roberson
2015년 9월 21일
You have to convert those entries to strings. Then see http://www.mathworks.com/matlabcentral/answers/2928-how-do-you-align-numbers-within-a-column-in-uitable#answer_4498
and remember to set a monospaced font.
See also http://www.mathworks.com/matlabcentral/answers/8613-how-to-align-text-in-a-table-cell#answer_12108
uitable supports HTML, but it is not easy to get it to center items. Supposing you have a cell array of strings STRINGS, then:
numpixels = 50;
cells_for_table = strcat(sprintf('<html><tr align=center><td width=%d>', numpixels), STRINGS(:));
set(handles.uitable1, 'Data', cells_for_table);
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!