top of page

For any support or more customized script, contact us -  binextlevel@gmail.com

Enable shared tooltip in Sisense (display all 'breakby' items in tooltip)

If a 'breakby' column is added in Sisense widget, currently it shows value of one item at a time in tooltip. Here is a solution to display values of all 'breakby' items in tooltip




widget.on('processresult', function(se, ev){
	ev.result.tooltip.shared = true
	ev.result.tooltip.enabled = true
})

widget.on("beforedatapointtooltip", function (se, args){
	args.cancel=true;
});

80 views0 comments

Recent Posts

See All
bottom of page