fontcolor.gml 424 B

123456789101112
  1. # set the fontcolor in the labelgraphics section example
  2. graph
  3. [ hierarchic 1
  4. directed 1
  5. defaultnodesize "labelsize"
  6. node [ id 0 LabelGraphics [ text "January" color "#00ff00" ] ]
  7. node [ id 1 LabelGraphics [ text "December" color "#0000ff" ] ]
  8. node [ id 2 label "label2" LabelGraphics [ text "April" color "#ff0000" ] ]
  9. edge [ source 1 target 0 ]
  10. edge [ source 1 target 2 ]
  11. ]