mlreportgen.report.BaseTable.createTemplate
Class: mlreportgen.report.BaseTable
Package: mlreportgen.report
Create table template
Syntax
template = mlreportgen.report.BaseTable.createTemplate(templatePath,type)
Description
creates a copy of the default table reporter template specified by
template
= mlreportgen.report.BaseTable.createTemplate(templatePath
,type
)type
at the location specified by
templatePath
. You can use the copied template as a starting
point to design a custom table template for your report.
Input Arguments
Output Arguments
Examples
Create Title Page Template
Before you run this example, create a copy of the default HTML
BaseTable
template in the mytemplates
folder.
Name the copied template myTable.htmtx
. Edit the template as
desired. To use the new template for the title page, assign its path to the
BaseTable
TemplateSrc
property.
import mlreportgen.report.* rpt = Report('My Report','html'); table = BaseTable(magic(5)); table.Title = 'Rank 5 Magic Square'; template = BaseTable.createTemplate('mytemplates\myTable','html'); table.TemplateSrc = template;