Skip to main content

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

NameOptionalityTypeDescription
dashboardConfigsRequiredArray < DashboardConfig >Array of dashboard configurations. At least one dashboardConfig must be provided,
and each must have a valid dashboardID. The method supports up to three dashboards.
titleOrOptionsOptionalundefined | string | MultiDashboardUIParamsTitle 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

TypeDescription
Promise < Array < IDashboard > >Promise resolving to the array of popup dashboard instances.