Search results

Bold BI Embedding SDK for Viewer

The Bold BI Embed SDK allows you to seamlessly integrate and visualize dashboards published on your Bold BI server within your web applications. By specifying the server URL, dashboard ID, and embed token, you can securely embed and display dashboards inside your application.

For more details, refer to the official documentation: Embed Dashboard.

For more information on supported customization options in the Embed SDK, refer to the sample embed.

Syntax and Example

<div id="embed_container"></div>
<script>
  function embedSample() {
    var dashboard = BoldBI.create({
      serverUrl: "<Bold BI Server URL>",
      dashboardId: "<Dashboard ID>",
      embedContainerId: "<Embed Container ID>",
      embedToken: "<Embed token generated from the backend server>"
    });
    dashboard.loadDashboard();
  }
</script>

In this section, the details of public APIs are provided along with their code references: