GridRowSpacingParams Interface
Object passed as parameter in the row `getRowSpacing` callback prop.
Import
import { GridRowSpacingParams } from '@mui/x-data-grid-pro';
// or
import { GridRowSpacingParams } from '@mui/x-data-grid';
Properties
| Name | Type | Description |
|---|---|---|
| id | GridRowId | The row id. |
| isFirstVisible | boolean | Whether this row is the first visible or not. |
| isLastVisible | boolean | Whether this row is the last visible or not. |
| model | GridRowModel | The row model. |