Hi, thanks for this great library!
I am building the module graph with following command:
graphmod --quiet --prune-edges $PROJECT_ROOT/src/**/*.hs | dot -Gsize=20,20! -Tpng -o module-graph.png
The PNG I get as a result is looking good, with two problems however:
- Node names are pretty small, so zooming in is required.
- Resolution is not high enough to be able to read the node names clearly even after zooming in.
Therefore, I would love to:
- Increase the font size of nodes.
- Increase the resolution of the image itself.
I tried increasing dot -Gsize= to 40,40 and that helps with resolution, but I have no idea how to increase the font size. Any help is welcome!
I also tried doing dot -Nfontsize=20, but that had no effect.
Hi, thanks for this great library!
I am building the module graph with following command:
The PNG I get as a result is looking good, with two problems however:
Therefore, I would love to:
I tried increasing
dot -Gsize=to40,40and that helps with resolution, but I have no idea how to increase the font size. Any help is welcome!I also tried doing
dot -Nfontsize=20, but that had no effect.