how to add title/caption to FormalTable ?

18 Ansichten (letzte 30 Tage)
SRUSHTI KHATAU
SRUSHTI KHATAU am 20 Nov. 2021
Kommentiert: SRUSHTI KHATAU am 25 Nov. 2021
I want to add caption/title to the table. I am making tables using FormalTable but could not find the property to add caption to it. Please help

Akzeptierte Antwort

Srijith Kasaragod
Srijith Kasaragod am 23 Nov. 2021
Hi Srushti,
Please refer this answer which captures the same issue.
Regards.
  3 Kommentare
Srijith Kasaragod
Srijith Kasaragod am 25 Nov. 2021
Bearbeitet: Srijith Kasaragod am 25 Nov. 2021
Base table provides an option to specify a numbered title to the table. So inorder to add a title to a Formal table, you can first create a Formal table and then create a Base table from it. The following piece of code shows an example:
import mlreportgen.dom.*
import mlreportgen.report.*
%Create a report
rpt = Report("mydoc","pdf");
open(rpt);
%Create a FormalTable
t = FormalTable({'Col1', 'Col2'}, {'entry11', 'entry12'; 'entry21', 'entry22'});
tableStyles = { ColSep("solid"), ...
RowSep("solid"), ...
Border("solid"), ...
Width("4in")};
% Specify styles for the header first row
headerRow = t.Header.Children(1);
headerRow.Style = [headerRow.Style {Bold()}];
%Create BaseTable from FormalTable and add to report
chapter = Chapter();
chapter.Title = "Table example";
add(rpt,chapter);
table = BaseTable(t);
table.Title = "Formal table to Base table";
add(rpt,table);
%Close and view report
close(rpt);
rptview(rpt);
Hope this helps!
SRUSHTI KHATAU
SRUSHTI KHATAU am 25 Nov. 2021
Thank you so much.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu MATLAB Report Generator Task Examples finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by