Rows used to generate the aggregated value. If filtered, the aggregated values are generated using only the rows currently passing the filtering process. If all, the aggregated values are generated using all the rows.
Type:'all' | 'filtered'
Default:"filtered"
apiRef
The ref object that allows grid manipulation. Can be instantiated with useGridApiRef().
Type:{ current: object }
aria-label
The label of the Data Grid.
Type:string
aria-labelledby
The id of the element containing a label for the Data Grid.
Type:string
autoHeight
If true, the Data Grid height is dynamic and follows the number of rows in the Data Grid.
Type:bool
Default:false
autoPageSize
If true, the pageSize is calculated according to the container size and the max number of rows to avoid rendering a vertical scroll bar.
Type:bool
Default:false
autosizeOnMount
If true, columns are autosized after the datagrid is mounted.
If true, the Data Grid will display an extra column with checkboxes for selecting rows.
Type:bool
Default:false
checkboxSelectionVisibleOnly
If true, the "Select All" header checkbox selects only the rows on the current page. To be used in combination with checkboxSelection. It only works if the pagination is enabled.
Type:bool
Default:false
classes
Override or extend the styles applied to the component.
The character used to separate cell values when copying to the clipboard.
Type:string
Default:'\t'
columnBufferPx
Column region in pixels to render before/after the viewport
Type:number
Default:150
columnHeaderHeight
Sets the height in pixel of the column headers in the Data Grid.
Type:number
Default:56
columnVisibilityModel
Set the column visibility model of the Data Grid. If defined, the Data Grid will ignore the hide property in GridColDef.
Type:object
defaultGroupingExpansionDepth
If above 0, the row children will be expanded up to this depth. If equal to -1, all the row children will be expanded.
Type:number
Default:0
density
Set the density of the Data Grid.
Type:'comfortable' | 'compact' | 'standard'
Default:"standard"
detailPanelExpandedRowIds
The row ids to show the detail panel.
Type:Array<number | string>
disableAggregation
If true, aggregation is disabled.
Type:bool
Default:false
disableAutosize
If true, column autosizing on header separator double-click is disabled.
Type:bool
Default:false
disableChildrenFiltering
If true, the filtering will only be applied to the top level rows when grouping rows with the treeData prop.
Type:bool
Default:false
disableChildrenSorting
If true, the sorting will only be applied to the top level rows when grouping rows with the treeData prop.
Type:bool
Default:false
disableClipboardPaste
If true, the clipboard paste is disabled.
Type:bool
Default:false
disableColumnFilter
If true, column filters are disabled.
Type:bool
Default:false
disableColumnMenu
If true, the column menu is disabled.
Type:bool
Default:false
disableColumnPinning
If true, the column pinning is disabled.
Type:bool
Default:false
disableColumnReorder
If true, reordering columns is disabled.
Type:bool
Default:false
disableColumnResize
If true, resizing columns is disabled.
Type:bool
Default:false
disableColumnSelector
If true, hiding/showing columns is disabled.
Type:bool
Default:false
disableColumnSorting
If true, the column sorting feature will be disabled.
Type:bool
Default:false
disableDensitySelector
If true, the density selector is disabled.
Type:bool
Default:false
disableEval
If true, eval() is not used for performance optimization.
Type:bool
Default:false
disableMultipleColumnsFiltering
If true, filtering with multiple columns is disabled.
Type:bool
Default:false
disableMultipleColumnsSorting
If true, the sorting with multiple columns is disabled.
Type:bool
Default:false
disableMultipleRowSelection
If true, multiple selection using the Ctrl/CMD or Shift key is disabled. The MIT DataGrid will ignore this prop, unless checkboxSelection is enabled.
Type:bool
Default:false (`!props.checkboxSelection` for MIT Data Grid)
disableRowGrouping
If true, the row grouping is disabled.
Type:bool
Default:false
disableRowSelectionOnClick
If true, the selection on click on a row or cell is disabled.
Type:bool
Default:false
disableVirtualization
If true, the virtualization is disabled.
Type:bool
Default:false
editMode
Controls whether to use the cell or row editing.
Type:'cell' | 'row'
Default:"cell"
estimatedRowCount
Use if the actual rowCount is not known upfront, but an estimation is available. If some rows have children (for instance in the tree data), this number represents the amount of top level rows. Applicable only with paginationMode="server" and when rowCount="-1"
Type:number
experimentalFeatures
Unstable features, breaking changes might be introduced. For each feature, if the flag is not explicitly set to true, then the feature is fully disabled, and neither property nor method calls will have any effect.
Returns: The height in pixels or "auto" to use the content height.
getEstimatedRowHeight
Function that returns the estimated height for a row. Only works if dynamic row height is used. Once the row height is measured this value is discarded.
Type:func
Signature:
function(params: GridRowHeightParams) => number | null
params With all properties from GridRowHeightParams.
Returns: The estimated row height value. If null or undefined then the default row height, based on the density, is applied.
getRowClassName
Function that applies CSS classes dynamically on rows.
params With all properties from GridRowHeightParams.
Returns: The row height value. If null or undefined then the default row height is applied. If "auto" then the row height is calculated based on the content.
getRowId
Return the id of a given GridRowModel.
Type:func
getRowSpacing
Function that allows to specify the spacing between rows.
Determines the path of a row in the tree data. For instance, a row with the path ["A", "B"] is the child of the row with the path ["A"]. Note that all paths must contain at least one element.
Type:func
Signature:
function(row: R) => Array
row The row from which we want the path.
Returns: The path to the row.
groupingColDef
The grouping column used by the tree data.
Type:func | object
headerFilterHeight
Override the height of the header filters.
Type:number
headerFilters
If true, enables the data grid filtering on header feature.
Type:bool
Default:false
hideFooter
If true, the footer component is hidden.
Type:bool
Default:false
hideFooterPagination
If true, the pagination component in the footer is hidden.
Type:bool
Default:false
hideFooterRowCount
If true, the row count in the footer is hidden. It has no effect if the pagination is enabled.
Type:bool
Default:false
hideFooterSelectedRowCount
If true, the selected row count in the footer is hidden.
Type:bool
Default:false
ignoreDiacritics
If true, the diacritics (accents) are ignored when filtering or quick filtering. E.g. when filter value is cafe, the rows with café will be visible.
Type:bool
Default:false
ignoreValueFormatterDuringExport
If true, the Data Grid will not use valueFormatter when exporting to CSV or copying to clipboard. If an object is provided, you can choose to ignore the valueFormatter for CSV export or clipboard export.
The initial state of the DataGridPremium. The data in it is set in the state on initialization but isn't controlled. If one of the data in initialState is also being controlled, then the control state wins.
Type:object
isCellEditable
Callback fired when a cell is rendered, returns true if the cell is editable.
Returns: A boolean indicating if the row is selectable.
keepColumnPositionIfDraggedOutside
If true, moving the mouse pointer outside the grid before releasing the mouse button in a column re-order action will not cause the column to jump back to its original position.
Type:bool
Default:false
keepNonExistentRowsSelected
If true, the selection model will retain selected rows that do not exist. Useful when using server side pagination and row selections need to be retained when changing pages.
Type:bool
Default:false
loading
If true, a loading overlay is displayed.
Type:bool
Default:false
localeText
Set the locale text of the Data Grid. You can find all the translation keys supported in the source in the GitHub repository.
Type:object
logger
Pass a custom logger in the components that implements the Logger interface.
Select the pageSize dynamically using the component UI.
Type:Array<number | { label: string, value: number }>
Default:[25, 50, 100]
pagination
If true, pagination is enabled.
Type:bool
Default:false
paginationMeta
The extra information about the pagination state of the Data Grid. Only applicable with paginationMode="server".
Type:{ hasNextPage?: bool }
paginationMode
Pagination can be processed on the server or client-side. Set it to 'client' if you would like to handle the pagination on the client-side. Set it to 'server' if you would like to handle the pagination on the server-side.
Type:'client' | 'server'
Default:"client"
paginationModel
The pagination model of type GridPaginationModel which refers to current page and pageSize.
Type:{ page: number, pageSize: number }
pinnedColumns
The column fields to display pinned to left or right.
Callback called before updating a row with new values in the row and cell editing.
Type:func
Signature:
function(newRow: R, oldRow: R) => Promise | R
newRow Row object with the new values.
oldRow Row object with the old values.
Returns: The final values to update the row.
resizeThrottleMs
The milliseconds throttle delay for resizing the grid.
Type:number
Default:60
rowBufferPx
Row region in pixels to render before/after the viewport
Type:number
Default:150
rowCount
Set the total number of rows, if it is different from the length of the value rows prop. If some rows have children (for instance in the tree data), this number represents the amount of top level rows. Only works with paginationMode="server", ignored when paginationMode="client".
Type:number
rowGroupingColumnMode
If single, all the columns that are grouped are represented in the same grid column. If multiple, each column that is grouped is represented in its own grid column.
Type:'multiple' | 'single'
Default:'single'
rowGroupingModel
Set the row grouping model of the grid.
Type:Array<string>
rowHeight
Sets the height in pixel of a row in the Data Grid.
Type:number
Default:52
rowModesModel
Controls the modes of the rows.
Type:object
rowPositionsDebounceMs
The milliseconds delay to wait after measuring the row height before recalculating row positions. Setting it to a lower value could be useful when using dynamic row height, but might reduce performance when displaying a large number of rows.
Type:number
Default:166
rowReordering
If true, the reordering of rows is enabled.
Type:bool
Default:false
rows
Set of rows of type GridRowsProp.
Type:Array<object>
Default:[]
rowSelection
If false, the row selection mode is disabled.
Type:bool
Default:true
rowSelectionModel
Sets the row selection model of the Data Grid.
Type:Array<number | string> | number | string
rowsLoadingMode
Loading rows can be processed on the server or client-side. Set it to 'client' if you would like enable infnite loading. Set it to 'server' if you would like to enable lazy loading. * @default "client"
Type:'client' | 'server'
rowSpacingType
Sets the type of space between rows added by getRowSpacing.
Type:'border' | 'margin'
Default:"margin"
scrollbarSize
Override the height/width of the Data Grid inner scrollbar.
Type:number
scrollEndThreshold
Set the area in px at the bottom of the grid viewport where onRowsScrollEnd is called.
Type:number
Default:80
showCellVerticalBorder
If true, the vertical borders of the cells are displayed.
Type:bool
Default:false
showColumnVerticalBorder
If true, the right border of the column headers are displayed.
Type:bool
Default:false
slotProps
Overridable components props dynamically passed to the component at rendering.
Sorting can be processed on the server or client-side. Set it to 'client' if you would like to handle sorting on the client-side. Set it to 'server' if you would like to handle sorting on the server-side.
If positive, the Data Grid will throttle updates coming from apiRef.current.updateRows and apiRef.current.setRows. It can be useful if you have a high update rate but do not want to do heavy work like filtering / sorting or rendering on each individual update.
Type:number
Default:0
treeData
If true, the rows will be gathered in a tree structure according to the getTreeDataPath prop.