1

如何在类图中修改 UML 注释的默认字体大小?

/**
 * @opt attributes  
 * @note How to modify font size of this text? 
 */

我尝试使用文档站点中所有记录的字体大小选项,但它们都没有修改注释文本的字体大小。

/**
 * @hidden
....
 * @opt nodefontclasssize 22
 * @opt nodefontsize 14
 * @opt nodefonttagsize 14
 * @opt nodefontpackagesize 14
 * @opt edgefontsize 14 
.... 
 */
 class UMLOptions{}

我正在使用 UMLGraph-5.6

4

1 回答 1

2

将选项添加到名为UMLNoteOptions. 请参阅以下示例和结果。

/**
 * @hidden
 * @opt nodefontsize 18
 */
class UMLNoteOptions{}

/**
 * @opt attributes
 * @note How to modify font size of this text?
 */
class Foo {}

UMLGraph 结果

于 2017-04-14T13:50:04.637 回答