I have a pie chart in which I want to control the long labels inserting escape characters. Something like this:
labels = ['Long labeeeeeeeeeeeeeeeeeeeeeeeeeeeee\neeeeeeeeeeeel', 'Another long labeeeeeeeeeeeee\neeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee;', 'Etcccccccccccccccccccccccccc\nccccccccccccccc']
values = …
pie = go.Pie(values=values, text=labels, textposition='outside', showlegend=False)
However when I plot it, the escape characters are ignored and the labels are printed in a single line. Can this behaviour be overriden?