在UMLGraph中更改Notes中的字体大小

时间:2017-04-13 17:43:07

标签: uml graphviz class-diagram umlgraph

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

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

我尝试使用documentation site中所有已记录的 fontsize 选项,但它们都没有修改注释文字字体大小。

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

我正在使用UMLGraph-5.6

1 个答案:

答案 0 :(得分:2)

为名为UMLNoteOptions的类的注释添加选项。请参阅以下示例和结果。

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

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

UMLGraph result