-
Notifications
You must be signed in to change notification settings - Fork 674
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Redrawing on collapse #18
Comments
The old version can do this. Now the node div uses style visibility instead of display. As we know visibility would use the space even it's set to hidden while display:none will absolutely take out the space. |
I have solution but can't commit the changes. |
Could you write the changes here or are they too extensive? |
I'll accept a pull request that gives an option to ignores/respects whitespace left by collapsed nodes :) For now here's the version that will collapse into whitespace left by collapsed nodes. https://github.com/wesnolte/jOrgChart/tree/9763085df24d0507636100e7919d6530391e62c6 |
I had the same requirement and fixed it in this way: Changed all occurences of Added this to the LESS file: .row-hidden{
//visibility:hidden; //the original setting - use this to maintain the layout on open/close
display:none; //mine, to make it expand and contract when opening/closing a branch
} |
Hi
I'm not much of a programmer, but it would be very helpfull if the graph were to be redrawn on collapse, in order to make a better use of the available space on the container.
For example, my initial tree is very wide, but if the user collapses a few nodes the diagram should redraw to use less space
Thanks!
The text was updated successfully, but these errors were encountered: