Loading...
Loading...

Live Chat Icon For mobile
Hugo Morris

Chat with the Bold BI Sales team now!

Live Chat Icon
Customization >Export Settings
Export Settings
This sample describes how to handle the visibility of different export options in the embedded dashboard using JavaScript member APIs.
How can you explore?
The Export Settings let you toggle the visibility of exporting options such as Excel, Image, PDF, and CSV to the end user. To explore this, check/uncheck the corresponding exporting options and click Apply. Now, you will get the dashboard rendered in the viewer section with required export options alone.
Properties
Apply

Click to apply any setting changes above.

Code snippet that enables this functionality.


    function renderDashboard() {
        var boldbiEmbedInstance = BoldBI.create({
            exportSettings: {
                showExcel: true,
                showPDF: true,
                showImage: true,
                showCSV: true,
            }
        });
        boldbiEmbedInstance.loadDashboard();
    }