Forum Discussion
Sijo1995
06-16-2023Cloud Apps
Hi gyanianand ,
Please try this script
dashboard.on('widgetready', function (se, ev) {
// Get all the widgets in the dashboard
var widgets = dashboard.getWidgets();
// Loop through all the widgets
for (var i = 0; i < widgets.length; i++) {
// Center align the widget
widgets[i].setAlignment('Center');
}
});
Thanks
Sijo