OBJECT

DashboardTileConditionalFormatting

link GraphQL Schema definition

  • type DashboardTileConditionalFormatting {
  • # Comparison applied between the tile value and firstValue (and secondValue for
  • # range operators such as Between) to decide whether this color applies.
  • operator: FieldOperator!
  • # Threshold compared against the tile value using the operator.
  • firstValue: Float
  • # Upper bound used together with firstValue for range operators such as Between.
  • secondValue: Float
  • # Color applied to the tile when the condition matches, as a packed RGB integer.
  • color: Int!
  • }