An object which holds the configuration data for a cell.
A type alias for a cell renderer config function.
This type is used to compute a value from a cell config object.
A type alias for a cell renderer config option.
A config option can be a static value or a config function.
Paint the content for a cell.
The graphics context to use for drawing.
The configuration data for the cell.
The grid will save/restore the gc
state before/after invoking
the renderer.
For performance, the cell content is efficiently clipped to the width of the column, but the height is not clipped. If height clipping is needed, the renderer must set up its own clip rect.
The renderer must not draw outside the cell bounding height.
Resolve a config option for a cell renderer.
The config option to resolve.
The cell config object.
The resolved value for the option.
Generated using TypeDoc
An object which renders the cells of a data grid. The namespace for the
CellRenderer
class statics.Notes
If the predefined cell renderers are insufficient for a particular use case, a custom cell renderer can be defined which derives from this class.
The data grid renders cells in column-major order, by region. The region order is: body, row header, column header, corner header.