BadgeOverflowMode

How adjacent badges in an array-column cell should lay out when the cell is too narrow to fit them on one line.

  • 'Truncate' - default; badges sit on a single line and the cell clips anything that overflows (legacy behaviour). - 'Wrap' - badges wrap onto subsequent lines; row height grows to fit. AG Grid rowHeight / getRowHeight should be tall enough to host the wrapped badges; consider autoRowHeight on the column. - 'Scroll' - badges stay on one line and the cell becomes horizontally scrollable.
TypeScript
export type BadgeOverflowMode = 'Truncate' | 'Wrap' | 'Scroll';