I try to change the font size for the associotion text in UMLGraph using the @opt edgefontsize
but it seems that a default font size is used.
Note that the option @opt edgefontname
works fine.
I'm on UMLGraph doclet version R5_7_2-32-g40b5a6
Here a demonstration - all fonts are increased to 22, but the association text remains small.
/**
* @hidden
* @opt postfixpackage
* @opt nodefontclassname "Arial Bold"
* @opt nodefontclassabstractname "Arial Italic"
* @opt nodefontclasssize 22
*
* @opt nodefontname "Arial"
* @opt nodefontabstractname "Times New Roman Italic"
* @opt nodefontsize 22
*
* @opt nodefonttagname "Courier New Italic"
* @opt nodefonttagsize 22
*
* @opt nodefontpackagename "Comic Sans MS"
* @opt nodefontpackagesize 22
*
* @opt edgefontname "Courier New Italic"
* @opt edgefontsize 22
* @opt types
*/
class UMLOptions{}
/**
* @opt attributes
* @assoc " " " " parent_id B
*/
class A {
public int id;
}
/**
* @opt attributes
*/
class B {
public int id;
}
Result