Is it possible to have distinct font colors for xlabel and node label in Graphviz?
digraph {
"complete" [xlabel="complete", label="complete", fontcolor=red];
}
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];
}