top of page

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

1 Kommentar

Mit 0 von 5 Sternen bewertet.
Noch keine Ratings

Rating hinzufügen
hautobahn
16. Nov. 2023

Is there a way to maintain the formatting of the tool tip text when using this script? When I use this script, it strips all formatting that has been set in sisense. For example, if I have dollars & rounding set, it ignores that and just displays the raw number

Gefällt mir
BI Next Level white logo

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
Copyright © 2024. All Rights Reserved. Designed, Developed & Maintained  by Intertoons
bottom of page