Solved
I have a funnel chart, is there a way to make the height of each stage the same?
Hi DXC ,
Try below script to make height of each stages same:
widget.on('processresult', function(w, args){
args.result.series[0].data.forEach(d => d.y = 1)
})
-Hari