slreportgen.report.ScheduleDiagram.customizeReporter
Class: slreportgen.report.ScheduleDiagram
Namespace: slreportgen.report
Syntax
reporter = slreportgen.report.ScheduleDiagram.customizeReporter(classpath)
Description
reporter = slreportgen.report.ScheduleDiagram.customizeReporter(
creates a schedule diagram class definition file that is a subclass of
classpath
)slreportgen.report.ScheduleDiagram
. The file is created at the
specified classpath
location. The
customizeReporter
method also copies the default schedule diagram
templates to the <classpath>/resources/template
folder. You can
use the new class definition file as a starting point to design a custom schedule
diagram class for your report.
Input Arguments
Output Arguments
Examples
Create Custom ScheduleDiagram Reporter
Run the following command to access the supporting files used in this example.
openExample('rptgenext/SimulinkReportGeneratorFilesExample');
Create a custom schedule diagram reporter and its associated default templates.
The derived class file is created at the specified path relative to the current
working folder. In this case, the path to the MyDiagram.m
class
file is <current working
folder>/newDiagram/@MyDiagram/MyDiagram.m
. The default schedule
diagram templates are in the <current working
folder>/newDiagram/@MyDiagram/resources/templates
folder.
import slreportgen.report.* ScheduleDiagram.customizeReporter('newDiagram/@MyDiagram');
After editing this new class file and loading a model, you can use the new schedule diagram reporter.
sf_car;
scheddiagram = MyDiagram('sf_car');
Version History
Introduced in R2024b