I've been using openpyxl and xlsx for few months and have found while there is an option to change the default alignment format on xlsxwriter, there is none on openpyxl.
More details:
Xlsxwriter - creating an .xlsx with xlsxwriter, defining default alignment, saving, and opening again - the whole xlsx has the alignment as defined.
OpenPyXL - opening the same .xlsx above, whether defining alignment for each cell or not, saving and opening again - only cells with value keep the alignment meaning None cells and new cells I insert manually (out of range) doesn't have an alignment.
I would like to ask if anyone aware of a way on openpyxl (or even other libraries beside PyExcelerate I already checked) to keep the whole xlsx's alignment as configured.
P.s. I already search the whole stack overflow and google on default alignment on xlsx file but found no post regarding that issue