SystemReportFormat

System report formats provided by AdapTable

TypeScript
export type SystemReportFormat = 
/**
 * Export report in Excel(XLSX) format
 */
'Excel'
/**
 * Export report in standard Excel/XLSX format, including all the AdapTable Styles and Formats (ConditionalStyles, ColumnFormats, etc.)
 */
 | 'VisualExcel'
/**
 * Export report in CSV format
 */
 | 'CSV'
/**
 * Export report in JSON format
 */
 | 'JSON';