Renders text and images in rounded rectangles. Always read only.
export interface DrilldownCellData { readonly text: string; readonly img?: string; } export interface DrilldownCell extends BaseGridCell { readonly kind: GridCellKind.Drilldown; readonly data: readonly DrilldownCellData[]; }
A collection of text/image tuples.
Last updated 11 months ago