Category / Section
Resizing specfic Widget or dashboard in Embedded application
Published:
When working with Bold BI embedded dashboards, you may encounter a situation where you need to resize a specific widget or dashboard. To do this, you can use the resizeDashboard
method. This article will guide you through the process of applying the resizeDashboard
method to a Bold BI instance.
Steps to Resize a specific widget or dashboard
- First, you need to get the particular widget instance or dashboard. To do this, use the
BoldBI.getInstance
method and pass theContainerId
as an argument. TheContainerId
is the container of the individual widget or dashboard.
var instance = BoldBI.getInstance("ContainerId");
- Next, invoke the
resizeDashboard
method on the instance.
instance.resizeDashboard();
That’s it! The individual widget or dashboard should now be resized according to your requirements.
Conclusion
In this article, we’ve shown you how to resize an individual widget or dashboard in Bold BI using the resizeDashboard
method. By following these steps, you can easily adjust the size of the widget or dashboard to fit your needs.