array of string []
Specifies the value to set the IDs of individual dashboards in an array, used with the loadTabbedDashboard() method to embed a programmatic multitab dashboard into your application.
[]
(empty)Example
var dashboard = BoldBI.create({
dashboardIds: ["5cb065f7-dabb-4b0c-9b45-c60a5730e963","47415a2c-d1de-478d-9d9e-5e6adc6e530d"]
});
dashboard.loadTabbedDashboard();
array of string []
Specifies the value to set the paths of individual dashboards in an array, used with the loadTabbedDashboard() method to embed a programmatic multitab dashboard into your application.
[]
(empty)Example
var dashboard = BoldBI.create({
dashboardPaths: ["/Samples/Sample Dashboard","/Support/Support Market Dashboard"]
});
dashboard.loadTabbedDashboard();
Note: Besides the
dashboardIds
anddashboardPaths
members described above, all other members available are identical to those used when embedding standard dashboards. For a complete list of supported members, refer to the dashboard members documentation.