Unable to load workbook with charts getting: TypeError: expected <class 'openpyxl.chart.axis.TextAxis'>
*Created originally on Bitbucket by [Nahdus](https://bitbucket.org/%7B9bcad719-b8f2-47c7-862d-850af27f59f5%7D/)* Getting error when trying to load a workbook with some charts when ``` #!python from openpyxl import Workbook from openpyxl import load_workbook inupt_file=load_workbook('workbook.xlsx') ``` it leads to below error ``` #!python \lib\site-packages\openpyxl\descriptors\base.py", line 44, in __set__ raise TypeError('expected ' + str(self.expected_type)) TypeError: expected <class 'openpyxl.chart.axis.TextAxis'> ``` *Attachments:* [workbook.xlsx](/uploads/6dbc65256928adf815c9f6dc50030fcc/workbook.xlsx)
issue