Forum Discussion

gwolfe's avatar
gwolfe
Data Pipeline
04-27-2022
Solved

Sort Funnel Chart Category Order

Hi, does anyone have a script to custom sort the order of categories on a Funnel Chart? Thanks. 
  • harikm007's avatar
    04-28-2022

    gwolfe 

    Please try this script:

    var categories= ['Jan','Feb','Mar','Apr','May','Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
    widget.on('queryend',function(se,ev){
    	ev.rawResult.values.sort(function(a, b){
    		var aIndex = categories.indexOf(a[0].data);
    		var bIndex = categories.indexOf(b[0].data);
    						
    		if (aIndex < bIndex)
    			return -1;
    		if (aIndex > bIndex)
    			return 1;
    							
    		return 0;
    	})
    })

    Reference : https://www.binextlevel.com/post/sort-bar-columns-breakby-manually

    -Hari