The pagination row count API interface that is available in the grid apiRef.

interface GridPaginationRowCountApi {
    setRowCount: ((rowCount: number) => void);
}

Hierarchy (view full)

Properties

Properties

setRowCount: ((rowCount: number) => void)

Sets the rowCount to a new value.

Type declaration

    • (rowCount): void
    • Parameters

      • rowCount: number

        The new row count value.

      Returns void