Customizing ResizingTool's minSize

Thanks reply.
How to dynamically set resizingTool.minSize, which is currently set in the gojs initialization configuration.

You can set, perhaps via a Binding, each object’s GraphObject.minSize property, which will constrain that specific object.

You can set the ResizingTool.minSize property, which will constrain all objects that the tool resizes.

Most generally you can override ResizingTool.computeMinSize, ResizingTool | GoJS API, which normally maximizes both of those properties. (width and height are maximized separately.)

Thanks a lot!