XlsProviderBase
Base class for xls providers. Subclasses must implement single static write method.
Functions
1
Functions
1writestatic
Implement this method to write data to an xls file
| Parameter | Type | Description |
|---|---|---|
config | Object | |
config.filename | String | Name of the exported file |
config.rows | XLSCell[][] | Array of rows, each row is an array of cells |
config.columns | XLSColumn[] | Array of columns |
config.sheet | Object | deprecated, to be removed in 7.0 Object with columns and data |
config.sheet.data | XLSCell[][] | Array of rows, each row is an array of cells |
config.sheet.cols | XLSColumn[] | Array of columns |
config.MIME | String | File MIME type |
Returns: void