DrilldownCell
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[];
}
data
A collection of text/image tuples.
Last updated
Was this helpful?