Interface CellRendererProps<T>

interface CellRendererProps<T> {
    bounds: Bounds;
    range?: CellRangeCoords;
    value: T;
    view?: GridOverlayView;
    zoom?: number;
}

Type Parameters

  • T = any

Hierarchy (view full)

Properties

bounds: Bounds

The range bounds relative to the current viewport and zoom

The CellRangeCoords that is being rendering

value: T

A value to render

The view that is rendering a collection of cells

zoom?: number

If there is a zoom scale.

Default Value

1