ImageCell
Last updated
Renders one or more images.
export interface ImageCell extends BaseGridCell {
readonly kind: GridCellKind.Image;
readonly data: string[];
readonly rounding?: number;
readonly displayData?: string[];
readonly readonly?: boolean;
}Reduced size image URLs for display in the grid. It is advisable to pass pre-scaled images to the grid to reduce scrolling and network overhead.
Full size image URLs.
Determines if the cell will accept new images.
Controls the amount of rounding applied to the images. If set to 0, no rounding will be applied.
Last updated