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
},
},
)
),