Forum Discussion

Nazeer's avatar
Nazeer
Cloud Apps
04-26-2022

Funnel chart tooltip customization

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

1 Reply

Replies have been turned off for this discussion
  • harikm007's avatar
    harikm007
    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) + '%'
    	}
    })

     

    -Hari