You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because this exists outside of the ExcelFormatter class where it is used it is way more difficult to override the default than it needs to be. If this was moved from global scope to instance scope it would allow users to theoretically subclass the ExcelFormatter and easily define their own style for the header
This could also eliminate the need for any work on #19386
The text was updated successfully, but these errors were encountered:
Right now the header style of excel exports is defined as global to the
pandas/io/formats/excel.py
module:pandas/pandas/io/formats/excel.py
Line 37 in 1a12c41
Because this exists outside of the
ExcelFormatter
class where it is used it is way more difficult to override the default than it needs to be. If this was moved from global scope to instance scope it would allow users to theoretically subclass theExcelFormatter
and easily define their own style for the headerThis could also eliminate the need for any work on #19386
The text was updated successfully, but these errors were encountered: