Optional
allowedList of export formats allowed for the table data extraction.
This specifies the formats (e.g., CSV, JSON, XLSX, XML, HTML) in which the extracted table data can be exported.
['csv', 'json', 'xlsx', 'xml', 'html']
options.tableDataExtraction = {
allowedExportFormats: ['csv', 'json']
};
Optional
extractOptions related to table extraction, passed from the client.
This property allows configuring various parameters for table extraction, such as precision, tokenization, and other settings.
options.tableDataExtraction = {
extractOptions: {
CoefPrecision: 0.3,
CoefTokenization: 0.1
}
};
Optional
title?: stringThe title of the Table Data Extraction dialog.
This title will be displayed at the top of the dialog window.
'Table Data Extraction'
options.tableDataExtraction = {
title: 'Custom Dialog Title'
};
Configuration options for the Table Data Extraction dialog.
This type defines the settings that can be customized for the dialog, including the title and allowed export formats.