Graph Node collapsing

Dear,

we have added a dynamic GoListGroup to our node class which appears like below:

We have the facility to Show/Hide the list group. but when we hide the GoListGroup the bounds remain fixed like below:

Please provide the guide line…

Regards

sudhanshu

The height of the GoListGroup is probably the same when hidden, so the LayoutChildren allocates space for it. Set all of the children of the GoListGroup to visible=false when you hide it, and the height will collapse.

I believe it would be better and clearer to change LayoutChildren to ignore the GoListGroup when it is not Visible.

thanks