필터 지우기
필터 지우기

How can i create such a table in Report Generator?

조회 수: 22 (최근 30일)
Tong Wang
Tong Wang 2018년 7월 21일
댓글: Tong Wang 2018년 7월 24일
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