GridExportCsvOptions Interface
The options to apply on the CSV export.
Import
import { GridExportCsvOptions } from '@mui/x-data-grid-pro';
// or
import { GridExportCsvOptions } from '@mui/x-data-grid';
Properties
| Name | Type | Default | Description |
|---|---|---|---|
| allColumns? | boolean | false |
If true, the hidden columns will also be exported. |
| delimiter? | string | ',' |
The character used to separate fields. |
| fields? | string[] | The columns exported in the CSV. This should only be used if you want to restrict the columns exports. |
|
| fileName? | string | document.title |
The string used as the file name. |
| utf8WithBom? | boolean | false |
If true, the UTF-8 Byte Order Mark (BOM) prefixes the exported file.This can allow Excel to automatically detect file encoding as UTF-8. |