OBJECT

DashboardItem

link GraphQL Schema definition

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