Hi,
I implemented the 'freeze panes' functionality and i have no problems
using them aside from the fact that it is not supported when using
optimized_write though support for that is on my todo list.
>
> Cheers, CJ
>
> Code Snippet:
> from openpyxl.workbook import Workbook
>
You are missing the following line, right?
wb = Workbook()
> ws = wb.create_sheet()
> ws.freeze_panes == ws.cell('B11') #doesn't freeze panes
> ws.freeze_panes == 'B11' #doesn't freeze panes
Adding the following line:
wb.save('foo.xlsx')
I get a workbook with two worksheets and the second worksheet has frozen
panes. The first worksheet is the one You get when creating the workbook
and the second is from the call to create_sheet.
Regards,
/Anders C