graphviz, определяющий больше «значений по умолчанию»

Нужно нарисовать сложный граф, в котором будет 3 типа ребер , и несколько предопределенных типов узлов.

Можно ли несколько определить больше (например, не только один по умолчанию) «тип ребра» (или тип узла) для последующего использования?

означает что-то вроде:

edge [colorscheme=paired12, color=8, fontsize=11, fontname="Arial narrow"];
edge2 [colorscheme=paired12, color=3, fontsize=11, fontname="Arial narrow", style=bold];
edge3 [colorscheme=paired12, color=5, fontsize=14, fontname="Arial narrow"];

node1 -> node2; /* will use the default edge definition from the above */
node2 -> node3 [edgetype=edge2]; /* will use the second edge definition */
node2 -> node4 [edgetype=edge3]; /* and so on... */

Вышеупомянутое, ofc , неверно - только для объяснения ...

8
задан jm666 19 November 2011 в 16:56
поделиться