cancel
Showing results for 
Search instead for 
Did you mean: 

Dashboard borders

amritbhgt
8 - Cloud Apps
8 - Cloud Apps

Hi All,

I wan to to have dashboard(not widget) border for my dashboard, an outline for the dashboard.

if you can also help in fixing the size(height & width) of the dashboard

Thanks

Example : black border

 

amritbhgt_1-1701965751576.png

 

1 ACCEPTED SOLUTION

Benji_PaldiTeam
10 - ETL
10 - ETL

Hi @amritbhgt ,

Use the script below to add a border into a Sisense dashboard. You can customize the border width and color in the CSS.

dashboard.on('widgetready', (sender, args) => {
	$('dashboard .ds-layout-host').css('border', '5px solid black')
})

Here is the screenshot of dashboard after applying above dashboard script.

Benji_PaldiTeam_0-1702012471334.png

 

 Feel free to reach out if you have further questions, we're always happy to help 🙂
[email protected] 
Paldi Solutions, Number #1 Sisense Plugins Developer

View solution in original post

1 REPLY 1

Benji_PaldiTeam
10 - ETL
10 - ETL

Hi @amritbhgt ,

Use the script below to add a border into a Sisense dashboard. You can customize the border width and color in the CSS.

dashboard.on('widgetready', (sender, args) => {
	$('dashboard .ds-layout-host').css('border', '5px solid black')
})

Here is the screenshot of dashboard after applying above dashboard script.

Benji_PaldiTeam_0-1702012471334.png

 

 Feel free to reach out if you have further questions, we're always happy to help 🙂
[email protected] 
Paldi Solutions, Number #1 Sisense Plugins Developer