For the complete documentation index, see llms.txt. This page is also available as Markdown.

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