Apply ResizingTool to Palette inside HTML div?

My palette is currently housed inside a draggable html div, similar to this sample: https://gojs.net/latest/samples/htmlInteraction.html

How would I achieve making this div resizable as well, via all four corners and edges? Is it possible to use the ResizingTool with this even though it isn’t a GraphObject? Is there potentially a way to wrap the div in a GraphObject in order to apply the ResizingTool?

Thanks in advance for any help you can provide!

Since it is an HTML element, you’ll need to use some library or HTML/CSS/JS programming to get it to work as you’d like. There’s no clever way to leverage the ResizingTool for the job, which only knows about GraphObject dimensions.

Gotcha, that’s what I assumed, thanks Simon!