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

131 views1 comment

1 則留言

評等為 0(最高為 5 顆星)。
暫無評等

新增評等
hautobahn
2023年11月16日

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

按讚
bottom of page