sbt-dependency-graph
sbt-dependency-graph copied to clipboard
<svg/> container too narrow
dependencyBrowseGraph generates HTML that has this container:
<svg height="7438.9375" width="1280">
However, that was too narrow. I had to manually widen it for my project:
<svg height="7438.9375" width="12800">
Is there some additional control that might be applied, perhaps by running a bounds check and setting svg width accordingly?
Hi @mslinn, what happens when the container is too narrow? Is the graph cut off at the border?
Yes, the image is clipped at the bounding box
Why not just have it take 100% of width available?