top of page

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

Updated: Nov 27, 2024

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


ree


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

Comments

Rated 0 out of 5 stars.
No ratings yet

Add a rating

BI Next Level is your trusted resource for BI customization, data solutions, and expert insights. Explore practical tips, scripts, and tutorials for tools like Sisense, Python, and SQL. Let’s transform your data into impactful insights together.

Quick Links
Connect with us
bottom of page