Is there a way to make a column name in a uitable have superscript text?
조회 수: 5 (최근 30일)
이전 댓글 표시
headers = {'Depth | (m)','Thickness|(m)',' Velocity | (m/sec)','Unit Weight |... (kN/m^3)',' | PI',' | OCR','','Minimum Vs | (m/sec)','','Maximum Vs |... (m/sec)','Sigma (ln) | Velcity'};
set(handles.Profile_uitable,'ColumnName',headers);
I want the 3 in m^3 to be superscript but i cant find a way to make it work in the uitable coulumn name property.
댓글 수: 0
답변 (1개)
Jing
2013년 3월 29일
Try the html format for the names.
headers = {'Depth | (m)','Thickness|(m)',' Velocity | (m/sec)','Unit Weight<br>... (kN) m<sup>3</sup>',' | PI',' | OCR','','Minimum Vs | (m/sec)','','Maximum Vs |... (m/sec)','Sigma (ln) | Velcity'};
댓글 수: 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!