This is kind a copy of issue #5 in original repo chartit#5
The library raises error when there is unicode data in x-axis labels (or maybe in some other cases)
Iэму found a workaround which is pretty simple: replace line 531 from chartdata.py
lv = tuple(map(str, lv))
to
lv = tuple(map(unicode, lv))
Please take a look, maybe this solution will work for production code.
This is kind a copy of issue #5 in original repo chartit#5
The library raises error when there is unicode data in x-axis labels (or maybe in some other cases)
Iэму found a workaround which is pretty simple: replace line 531 from chartdata.py
lv = tuple(map(str, lv))to
lv = tuple(map(unicode, lv))Please take a look, maybe this solution will work for production code.