Reduce Space between 2 nodes in Palette

Hi,

Is there any way to reduce the space between 2 nodes in Palette?
For eg:

Can we reduce space between cyan and lightcyan nodes?

Thanks

Palette.layout is a GridLayout. You will want to set its GridLayout.cellSize to new go.Size(1,1) and GridLayout.spacing to some Size smaller than the default (10,10) to get the results that you want.

Thanks walter