How to display subscript for ColumnName of UITable in Design App?

11 ビュー (過去 30 日間)
binh23294
binh23294 2021 年 6 月 13 日
編集済み: Adam Danz 2021 年 6 月 14 日
Hi guys,
I have a table in design app as below. I want to dispplay subscript for columnname such as qb, i had used html by code
app.UITable.ColumnName={'<html>q<sub>b','ΣRfi','Rb'}
This is worked in command window but it doesn't worked in design app.
In design app
In command window
Please help me. Thanks very much!
  1 件のコメント
Walter Roberson
Walter Roberson 2021 年 6 月 13 日
That kind of use of <html> was only for uitable() with traditional figures.

サインインしてコメントする。

採用された回答

Adam Danz
Adam Danz 2021 年 6 月 13 日
編集済み: Adam Danz 2021 年 6 月 14 日
If you're willing to use a different subscript letter, you can use one of the available unicode subscripts (a,e,h,i,j,k,l,m,n,o,p,r,s,t). 'b' is available as a superscript but not a subscript (thanks, unicode).
Example 1 uses subscript a; example 2 uses superscript b
Example 1
data = zeros(5,3);
app.UIFigure = uifigure();
app.UITable = uitable(app.UIFigure, 'Data', data);
app.UITable.ColumnName={['q',char(8336)],'ΣRfi','Rb'};
Example 2
app.UITable.ColumnName={['q',char(7495)],'ΣRfi','Rb'};

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDevelop Apps Using App Designer についてさらに検索

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by