在 UMLGraph 中更改注释中的字体大小

Changing Font Size in Notes in UMLGraph

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

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

我尝试使用 documentation site 中所有已记录的 fontsize 选项,但其中 none 修改了注释文本的字体大小。

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

我正在使用 UMLGraph-5.6

为名为 UMLNoteOptions 的 class 的评论添加选项。请参阅以下示例和结果。

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

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