cancel
Showing results for 
Search instead for 
Did you mean: 

Funnel chart tooltip customization

Nazeer
8 - Cloud Apps
8 - Cloud Apps

Hi Team,

We are trying to customize the in built sisense Funnel chart tooltip to remove the value and just to display percentage and couldn't able to do this, as funnel chart is not supporting beforedatatooltip event.

Could any one help me with this?

Nazeer_0-1650981633955.png

 

Nazeer

1 REPLY 1

harikm007
13 - Data Warehouse
13 - Data Warehouse


@Nazeer ,

Try this : 

widget.on('processresult', function(se, ev){	
	ev.result.tooltip.formatter = function(){
		return 'Percentage : ' + this.key + '<br>' + this.point.custom.percent.toFixed(0) + '%'
	}
})

harikm007_0-1650983413726.png

 

-Hari