Forum Discussion

rameshp0233's avatar
rameshp0233
Data Storage
03-22-2022

How to sort legends in pie chart Manually

I wanted to sort Legends in Pie Chart  Manually according to  my wish. Any information or code  related to it will appreciated.

 

 

1 Reply

Replies have been turned off for this discussion
  • harikm007's avatar
    harikm007
    Data Warehouse

    rameshp0233 ,

    Please try the script mentioned here

     

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

    -Hari