The Bold BI Embed SDK enables you to visualize the views in the particular dashboard published on the Bold BI server by including the server URL, view Id, and authorization server details in your application. For additional supported customization options in the Bold BI Embed SDK, please refer to the sample embed for more details.
Syntax
var boldbiEmbedInstance = BoldBI.create(options);
boldbiEmbedInstance.loadTabbedDashboard();
Example
<div id="container"></div>
<script>
function embedSample() {
var boldbiEmbedInstance = BoldBI.create({
serverUrl: "http://localhost:51777/bi/site/site1",
dashboardIds: ["9a4b8ddb-606f-4acd-8c53-8ccdcaa92a87","7f1ba4ee-2fcc-40f1-b2fc-a69de4dee522"],
embedContainerId: "container",
authorizationServer:{
url:"your-authorization-server-url"
}
});
boldbiEmbedInstance.loadTabbedDashboard();
}
</script>
Requires
boldbi-embed.js
In this section, the details of public APIs are mentioned along with code snippets.