Cursor pointer on button or panel hover

I want to display the cursor as pointer when i hover on a button or panel ?
Is there any way to that?

I tried this

$(go.Panel, 'Auto',
                      $(go.Shape, 'Circle', { fill: '#0a599c', strokeWidth: 0,  cursor: 'pointer'  }),
                      $(go.TextBlock, {
                        margin: 2, text: '+', font: 'bold 1.5rem verdana',
                        stroke:'#ffffff',
                        click: (e: go.InputEvent, obj: go.GraphObject) => {

                          //call some function
                        },
                      },        
                      )
                    ),

What’s the problem? With your template the cursor should be “pointer” after hovering over that “Circle” Shape.

Maybe you want to put the cursor and click assignments on the Panel? Or at least on the same GraphObject.

Sorry, It’s working fine now.