You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If node has property height defined, then auto-arrange working fine, but node does not rendered properly - conrols can go outside of node.
If node has property height undefined, then node autosizes height as needed, but auto-arrange is not working.
Guess that auto-arrange-plugin should autocalc node height like document.getElementById("div1").clientHeight or similar.
Example to reproduce
No response
How to reproduce
create a several nodes without height defined
call auto-arrange
auto-arrange-plugin should autocalc node height like document.getElementById("div1").clientHeight
This won't work because the first arrangment may be performed before the nodes are rendered. For instance, LOD example doesn't render complete HTML node elements at all, but this is not a blocker for using the arrange plugin (although it is not actually used in this example)
Therefore, despite this solution is not built in, you can implement it: wait until nodes are rendered (this is not controlled by the framework itself, e.g. using animated nodes), and sync Node's height with htmlElement.clientHeight
Describe the bug
If node has property height defined, then auto-arrange working fine, but node does not rendered properly - conrols can go outside of node.
If node has property height undefined, then node autosizes height as needed, but auto-arrange is not working.
Guess that auto-arrange-plugin should autocalc node height like document.getElementById("div1").clientHeight or similar.
Example to reproduce
No response
How to reproduce
create a several nodes without height defined
call auto-arrange
Expected behavior
auto-arrange nodes
Dependencies
Platform
Chrome 121.0.6167.139
Relevant log output
No response
Code of Conduct
The text was updated successfully, but these errors were encountered: