I use GraphViz to draw graphs and analyse links between our business objects. Here is an example of source code:
digraph G {rankdir=LR;
"6012013856_0010" -> "6012014462_0010"
"6012013856_0010" -> "6012014471_0010"
/* ~1000 more id1 -> id2 pairs */
"6012013856_0010"
"6012013859_0010"
/* ~300 more single ids */
}
Pastebin examples: large graph - 1300 LoC , smaller graph - 240 LoC
Looking at my graph its impossible to understand what nodes are connected with each other. I looking for any GraphViz options to show clearly all my edges in this case.