Forum Discussion
rahuldhomane
10-03-2022ETL
I removed the titlestyle, but here my aim is to lessen the height of the widget so that it sticks to the top and the vertical space is reduced.
Thanks,
Rahul
harikm007
10-03-2022Data Warehouse
Try this:
Add "z-index" in blox script as in below screenshot
And add below dashboard script to reduce height of widget
dashboard.on('refreshstart', function (se, ev) {
widgetid = '633ac50185a029002e9a9753'
$(`widget[widgetid="${widgetid}"]`).closest('.dashboard-layout-cell').height(40)
});
-Hari