Loading...
Loading...

Live Chat Icon For mobile
Hugo Morris

Chat with the Bold BI Sales team now!

Live Chat Icon
Customization > Theme Settings
Theme Settings
This sample describes how to switch the dashboard theme between light, dark and blue themes in the embedded dashboard using JavaScript member API.
How can you explore?
The Select Theme listing displays the theme list to choose one and display in the viewer. To explore this, choose a theme from Select Theme listing, and click Apply. Now, you will get the dashboard changed to the selected theme in the viewer section.
Properties
Apply

Click to apply any setting changes above.

Code snippet that enables this functionality.


    function renderDashboard() {
        var boldbiEmbedInstance = BoldBI.create({
            theme:BoldBI.Theme.Dark
        });
        boldbiEmbedInstance.loadDashboard();
    }