Forum Discussion

DXC's avatar
DXC
Cloud Apps
10-07-2024
Solved

How to make the size of each stage equal for a funnel chart?

I have a funnel chart, is there a way to make the height of each stage the same? 
  • harikm007's avatar
    10-08-2024

    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

    https://www.binextlevel.com/