The Bold BI Embed SDK enables you to visualize a specific widget from a dashboard published on your Bold BI server by including the server URL, Widget ID, dashboard ID, and embed token in your application.
For more details, refer to the official documentation: Embed Widget.
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 boldbiEmbedInstance = BoldBI.create({
serverUrl: "<Bold BI Server URL>",
dashboardId: "<Dashboard ID>",
embedContainerId: "<Embed Container ID>",
embedToken: "<Embed token generated from backend server>"
});
boldbiEmbedInstance.loadWidget("<Widget ID>");
}
</script>In this section, the details of public APIs are provided along with code examples: