top of page

Hide widget from PDF in Sisense

Updated: Nov 27, 2024

This dashboard script hide a specific widget row when exporting to PDF.

dashboard.on('widgetready', function (se, ev) {
	
	//widgetid to hide from PDF
	widgetid = '3aecd1801eafb16865d4c87lre'
	
	if(ev.widget.oid == widgetid)
	{
		$('[widgetid=' + widgetid + ']').closest('.u-r').height(0)
	}
});

Note : This script will hide widget from PDF only, not from email reports.

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