Skip to content

DashboardParams

With the 'DashboardParams' section, you will be able to configure and build a set of dashboard components.

Fields

A DashboardParams contains the following fields to be defined:

Title

The title of the dashboard which will be rendered at the dashboard component.

Requirements Rules:

  • Max length of 100 chars.

Example:

1
2
3
DashboardParams:
  Title: Main Dashboard
  ...


Kpis

A list of Key Performance Indicators to be rendered within the dashboard.

Requirements Rules:

  • Each kpi should be the name of a valid UiStructure of type 'Chart' present in the model.

Example:

1
2
3
DashboardParams:
  Title: Main Dashboard
  Kpis: [My_Chart_01, My_Chart_02]


Back to top