top of page

Hide widget from PDF in Sisense

  • Admin
  • Dec 30, 2021
  • 1 min read

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 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