RevGrid - v0.9.3
    Preparing search index...

    Render the grid.

    NOTE: This grid renderer is not as performant as the others and it's use is not recommended if you care about performance. The reasons for the wanting performance are unclear, possibly having to do with the way Chrome optimizes access to the column objects?

    Paints all the cells of a grid, one row at a time.

    First, a background rect is drawn using the grid background color.

    Then, if there are any rows with their own background color that differs from the grid background color, these are consolidated and the consolidated groups of row backgrounds are all drawn before iterating through cells.

    try...catch surrounds each cell paint in case a cell renderer throws an error. The error message is error-logged to console AND displayed in cell.

    Type Parameters

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    key: string
    partial: boolean

    Methods

    • We opted to not paint borders for each cell as that was extremely expensive. Instead we draw grid lines here.

      Returns void