This object allows setting custom fields for Excel export or storing some additional information. Custom fields are not shown on the grid, but they will be displayed in the exported Excel table.
{ name: string, value: string }
Example of setting custom fields in the report:
report: { // Other report props customFields: [ { name: "Field1", value: "Value1" }, { name: "Field2", value: "Value2" } ], }