0

Is there a way to disable

  1. subgraph(same graph but without clustering)
  2. disable/hide labelling of vertex and hedge

without redifining the whole graph?

thanks

P.S: it is for teaching/presentation purpose

stackoverflower
  • 301
  • 4
  • 14

1 Answers1

1
  1. clusterrank=global (https://graphviz.org/docs/attrs/clusterrank/) should turn off the cluster features. This can also be with commandline option '-Gclusterrank=global'
  2. If you are trying to change the default labels, try '-Elabel=""' and '-Nlabel=""'
sroush
  • 5,375
  • 2
  • 5
  • 11