ShowPopupDashboards
Description
Shows multiple dashboards in a popup window with side-by-side layout.
NOTE: Stability is experimental. Non-backward compatible changes or removal may occur in any future release. Use of this feature is not recommended for production environments.
Syntax
// shellFrame points to instance of IShellFrame
const result = await shellFrame.ShowPopupDashboards(
dashboardConfigs,
titleOrOptions,
);
Parameters
| Name | Optionality | Type | Description |
|---|---|---|---|
| dashboardConfigs | Required | Array < { dashboardID: string; data: any; } > | Array of dashboard configurations. |
| titleOrOptions | Optional | undefined | string | MultiDashboardUIParams | Title and UI options for the multi-dashboard popup. String Type: Defines the title of the popup. Object Type: Defines the title and other UI options including split ratio. |
Return type
| Type | Description |
|---|---|
Array < IDashboard > | Array of popup dashboard instances. |