The Bold BI Embedding SDK allows you to seamlessly integrate and visualize Pinboard published on your Bold BI server within your web applications. By specifying the server URL, pinboard name, and authorization server details, you can securely embed the pinboard experience.
Syntax
var Pinboard = BoldBI.create(options);
Pinboard.loadPinboard();
Example
<div id="container"></div>
<script>
function embedSample() {
var boldbiEmbedInstance = BoldBI.create({
serverUrl: "http://localhost:51777/bi/site/site1",
pinboardName:"Pinboard",
embedContainerId: "container",// This should be the container id where you want to embed the dashboard
authorizationServer:{
url:"your-authorization-server-url"
}
});
boldbiEmbedInstance.loadPinboard();
}
</script>
Requires
boldbi-embed.js
In this section, the details of public APIs are mentioned along with code snippets.