The Bold BI Embed SDK enables you to visualize and interact with multiple dashboards within a single embedded view. By including the server URL, dashboard IDs, and authorization server details in your application, you can securely embed and manage the multi-tab dashboard experience.
For more details, refer to the official documentation: Embed Multi-Tab Dashboard.
<div id="embed_container"></div>
<script>
function embedSample() {
var boldbiEmbedInstance = BoldBI.create({
serverUrl: "<Bold BI Server URL>",
dashboardIds: ["<Dashboard ID 1>", "<Dashboard ID 2>"],
embedContainerId: "<Embed Container ID>",
authorizationServer: {
url: "<Authorization Server URL>"
}
});
boldbiEmbedInstance.loadTabbedDashboards();
}
</script>In this section, the details of public APIs are provided along with code examples: