OBJECT
DashboardItem
link GraphQL Schema definition
- type DashboardItem {
- # Identifier of the dashboard item (tile).
- : ID!
- # Position and size of the item on the dashboard grid.
- : Rectangle!
- # Content rendered in the item, as one of the DashboardChart variants (KPI, grid,
- # agenda, target, opportunities trend, report chart, and others).
- : DashboardChart!
- # Title shown on the item.
- : String
- # When true, the name is treated as a localization key and resolved to the viewer
- # language instead of shown verbatim.
- : Boolean!
- # Optional subtitle or description shown on the item.
- : String
- # When true, the description is treated as a localization key and resolved to the
- # viewer language instead of shown verbatim.
- : Boolean!
- # Background color of the item, as a packed RGB integer.
- : Int
- # Header (title bar) color of the item, as a packed RGB integer.
- : Int
- }