What's Changed
* Support was added for column data styles and global date, time, and datetime formats rptmat57 in https://github.com/wharton/drf-renderer-xlsx/pull/50
* This is a breaking change for anyone who was using `xlsx_date_format_mappings`; please update to use `column_data_styles`
* Typos were fixed by runningzyp in https://github.com/wharton/drf-renderer-xlsx/pull/52
`column_data_styles` example
This new features allows for flexible styling at the column level:
python
column_data_styles = {
'distance': {
'alignment': {
'horizontal': 'right',
'vertical': 'top',
},
'format': '0.00E+00'
},
'created_at': {
'format': '%d.%m.%Y %H:%M',
}
}
New Contributors
* runningzyp made their first contribution in https://github.com/wharton/drf-renderer-xlsx/pull/52
**Full Changelog**: https://github.com/wharton/drf-excel/compare/1.0.0...2.0.0