Analytics Dashboard Component
UI Component
Changed on:
24 June 2026
Overview
The Analytics Dashboard Component allows analytics dashboards to be displayed directly within Fluent applications. Users can view, filter, and explore analytics data without leaving the Fluent platform. Dashboard configuration, including dashboard selection and default filters, is managed through settings, while access to analytics data is controlled through Fluent permissions and analytics roles.| Plugin Name | Core |
|---|
Alias
fc.mystique.analytics.dashboard
Detailed technical description
The
`fc.mystique.analytics.dashboard` component embeds analytics dashboards into the Fluent applications using secure, authenticated iFrame sessions.The component is configured through a setting referenced by the `settingName` property in the manifest. The setting must be created at the Account level.The recommended naming pattern is:`fc.analytics.dashboard.<dashboard-name>`Example:`fc.analytics.dashboard.orders`The setting value must be stored as a JSON object containing the dashboard configuration, including the dashboard identifier and optional default filters.1{
2 "dashboard": {
3 "id": "standard_template::orders",
4 "filters": [
5 {
6 "key": "orders_total_revenue__order_status",
7 "value": ["BOOKED", "COMPLETE"],
8 "hidden": true
9 }
10 ]
11 }
12}Properties
| Name | Type | Required | Default | Description |
`settingName` | String | Yes | - | Name of the setting that contains the dashboard configuration and optional filter definitions. |
Configuration example
1{
2 "component": "fc.mystique.analytics.dashboard",
3 "props": {
4 "settingName": "fc.analytics.dashboard.orders"
5 }
6}Version History
Recommended Placement
Recommended for dedicated pages due to the size and layout requirements of analytics dashboards. Use within smaller layout containers only when sufficient space is available for dashboard content.