The Bold BI Embed SDK allows you to seamlessly integrate and visualize dashboards in design mode from your Bold BI server within your web applications. By specifying the server URL, dashboard ID, mode, and embed token, you can securely embed the dashboard designer experience.
For more details, refer to the official documentation: Embed Designer Dashboard.
For additional supported customization options in the Bold BI Embed SDK, refer to the sample embed for more details.
<div id="embed_container"></div>
<script>
function embedSample() {
var dashboard = BoldBI.create({
serverUrl: "<Bold BI Server URL>",
dashboardId: "<Dashboard ID>",
mode: BoldBI.Mode.Design,
embedContainerId: "<Embed Container ID>",
embedToken: "<Embed token generated from backend server>"
});
dashboard.loadDesigner();
}
</script>In this section, the details of public APIs are provided along with code examples: