Reputation: 641
Is it possible to have distinct font colors for xlabel and node label in Graphviz?
digraph {
"complete" [xlabel="complete", label="complete", fontcolor=red];
}
Upvotes: 2
Views: 1553
Reputation: 6763
Only way I know of is a bit of a kludge. Use html labels for the label or xlabel:
digraph {
"complete" [xlabel=<<font color="green">Xcomplete</font>>
label="complete", fontcolor=red];
}
Upvotes: 10