Remove line present under column names in table
古いコメントを表示
Hi all,
I have added some tables in word document using report generator 'Document' Class. However I am getting some lines(underlines) for column names in a table. I want to remove these lines. Kindly let me know how this can be done.
Below is the example of problem i am facing. I am attaching an image as well for your reference. I am using 2019a version.Thanks.
Age
___
38
43

採用された回答
その他の回答 (1 件)
SC
2020 年 7 月 1 日
You can first create an array of structs 's' with Age and 'Gender' as fields,
s(1).Age = 38;
s(1).Gender = 'Male';
s(2).Age = 43;
s(2).Gender = 'Male';
s(3).Age = 38;
s(3).Gender = 'Female';
Visit the following to see, how it is done:
and use
T = struct2table(s);
If T is a table and D is your document, you can append your table by
MT = MATLABTable(T);
append(D, MATLABTable(T));
3 件のコメント
Walter Roberson
2020 年 7 月 1 日
The poster already has a table. The problem is that inside Report Generator, the name of the variables are being underlined, and they do not want the variable names to be underlined. This has nothing to do with how the table object was generated, and has to do with how table objects are formatted for Report Generator.
Sampath Rachumallu
2020 年 7 月 1 日
Walter Roberson
2020 年 7 月 1 日
Sorry, I do not know that. I have never used Report Generator.
I have encounted the fact that Report Generator supports Style Sheets, but I do not know how to get from that fact to specific representation of table objects.
カテゴリ
ヘルプ センター および File Exchange で Tables についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!