How can i create such a table in Report Generator?

16 次查看(过去 30 天)
i would like to creat a table like this, as you can see, the left side is a big image, and the second and third column are full of texts, i thought RowSpan could fix this.
I created firstly a 1*3 table, then use RowSpan to span the second and third entry,and an error goes to
'A table-cell is spanning more rows than available in its parent element.'
ok, i can understand this, but then i tried also other methods, they just didn't work... It would be great if i can get some tipps from you
Thanks
  1 个评论
Tong Wang
Tong Wang 2018-7-23
Or can i somehow directly insert a column on the right side? But Report Generator seems doesn't have this property...

请先登录,再进行评论。

采纳的回答

Krishnan Ramkumar
Krishnan Ramkumar 2018-7-23
编辑:Krishnan Ramkumar 2018-7-23
Hello Tong,
You can create an empty DOM Table and then create DOM TableRows and DOM TableEntries. Append the TableEntries to the TableRows and then the TableRows to the Table. For the first TableEntry alone set the RowSpan value. The documentation link for TableRows and TableEntries can be found below:
Also below is the sample code snippet to do create Table like the above one
import mlreportgen.dom.*
d = Document('sample', 'html-file');
i = Image(which('peppers.png'));
t = Table();
t.Border = 'Solid';
t.RowSep = 'Solid';
t.ColSep = 'Solid';
% Create First Table Row
tr = TableRow();
te = TableEntry();
% Setting the RowSpan for the first TableEntry to 3
te.RowSpan = 3;
append(te,i);
append(tr,te);
te = TableEntry();
append(te,'Text');
append(tr,te);
te = TableEntry();
append(te,'Text');
append(tr,te);
append(t,tr);
% Create Second Table Row
tr = TableRow();
te = TableEntry();
append(te,'Text');
append(tr,te);
te = TableEntry();
append(te,'Text');
append(tr,te);
append(t,tr);
% Create Third Table Row
tr = TableRow();
te = TableEntry();
append(te,'Text');
append(tr,te);
te = TableEntry();
append(te,'Text');
append(tr,te);
append(t,tr);
append(d,t);
close(d);
rptview(d);
Regards, Krishnan,

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB Report Generator 的更多信息

产品


版本

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by