Alignment for column names in uitables in App Designer
조회 수: 25 (최근 30일)
이전 댓글 표시
Hello,
I am struggling about making the alingment of column names. I want them to be positioned as center. I know how to do this for elements inside the table, but I could not figure out how to apply same thing for column names as well. Has anybody faced and solved this problem?
Regards,
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/304735/image.png)
댓글 수: 2
Eduardo Vicente Wolf Trentini
2023년 3월 31일
My table is called app.UITable
s = uistyle('HorizontalAlignment','center');
addStyle(app.UITable,s,'table','');
답변 (1개)
Jalaj Gambhir
2020년 8월 27일
Hi,
I have heard that this issue is known and the concerned parties may be investigating further.
Meanwhile an indirect workaround that you might try is to have another table with one row (without column header) and place it on top of your main table as its column header. You can apply uistyle to align the contents in the second table with only one row, which can be further used as column header in your main table.
Hope this helps!
댓글 수: 3
Adam Danz
2021년 5월 25일
See this answer that shows how to move the header strings into the first row of data and format the uitable so that it appears to have header names.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/629900/image.png)
Nathan Bblanc
2022년 11월 8일
I have to say that is workaround is quite insufficient. if a table is part of an App and is changed interactively this complicates the code, sometimes siginifantly. Hope this issue will be fixed in upcoming releases.
참고 항목
카테고리
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!