How to clip node inside group?

Hi,
In my diagram, users are able to vertical resize table. But when node width greater than group width then crossing text show up. Please see image below:

Do you have solution for this situation?

First, is the user meant to be able to resize horizontally? You mentioned you want vertical resizing. If that’s the case, you can use a custom resizing adornment. GoJS Tools -- Northwoods Software

Groups can’t clip their members because Parts aren’t allowed to clip other Parts. Only Panels can clip their child elements. If you want horizontal resizing and clipping, you’ll need to constrain the width of the nodes in the group as the group resizes, probably using desiredSize.

thank you, jhardy