Main Content

slreportgen.report.Diagram.customizeReporter

Class: slreportgen.report.Diagram
Package: slreportgen.report

Create custom diagram reporter class

Syntax

reporter = slreportgen.report.Diagram.customizeReporter(classpath)

Description

reporter = slreportgen.report.Diagram.customizeReporter(classpath) creates a diagram class definition file that is a subclass of slreportgen.report.Diagram. The file is created at the specified classpath location. The customizeReporter method also copies the default diagram templates to the <classpath>/resources/template folder. You can use the new class definition file as a starting point to design a custom diagram class for your report.

Input Arguments

expand all

Location of custom diagram class, specified as a string or character array. The classpath argument also supports specifying a folder with @ before the class name.

Output Arguments

expand all

Diagram reporter path, returned as the string specifying the path to the derived report class file.

Examples

Create Custom Diagram Reporter

Create a custom 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 diagram templates are in the <current working folder>/newDiagram/@MyDiagram/resources/templates folder.

import slreportgen.report.*
Diagram.customizeReporter('newDiagram/@MyDiagram');

After editing this new class file and loading a model, you can use the new diagram reporter.

slrgex_sf_car;
diagram = MyDiagram('slrgex_sf_car');

Version History

Introduced in R2017b