Make first column of table bold
5 ビュー (過去 30 日間)
古いコメントを表示
I have a table created with the class
FormalTable
and I want to make the text in the first column bold but I can't find the property. In the documentation there is no property about it.
Can anyone give me a way to do what I want?
I am trying with
grps(1) = TableColSpecGroup;
specs(1) = TableColSpec;
specs(1).Style = {fontweight('Bold')}; % this creates an error
grps(1).ColSpecs = specs;
tableFAIL.ColSpecGroups = grps;
But this doesn't work because I still can't find the property for putting the text Bold
Thank you in advance!
0 件のコメント
採用された回答
Rahul Singhal
2019 年 7 月 1 日
編集済み: Rahul Singhal
2019 年 7 月 1 日
Hi Jack,
You can use the ColSpecGroups property of the FormalTable to format one or more columns in the table. Use the Bold format to make the content bold.
Example,
import mlreportgen.dom.*
d = Document('mydoc','docx');
% Define column specs to format one or more table columns
grps(1) = TableColSpecGroup;
specs(1) = TableColSpec;
specs(1).Style = {Bold()};
grps(1).ColSpecs = specs;
% Create the table and assign the column specs
table = FormalTable(magic(5));
table.ColSpecGroups = grps;
append(d,table);
% Close and view the report
close(d);
rptview(d);
Thanks,
Rahul
1 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で MATLAB Report Generator Task Examples についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!