OBJECT

GridColumnsOutput

link GraphQL Schema definition

  • type GridColumnsOutput {
  • # Identifier of the field shown in this grid column.
  • fieldId: String!
  • # Column width. Interpreted as an exact pixel count when pixels is true, otherwise
  • # as a relative weight.
  • width: Float!
  • # True when the column is pinned to the left edge so it stays visible while the
  • # grid scrolls horizontally.
  • frozen: Boolean!
  • # True when width is given in absolute pixels; false when it is a relative weight.
  • pixels: Boolean!
  • }