Show all ticks of a windrose chart

Hello there!

I am trying to build a windrose chart in Python using Plot.ly.
In the tutorial (https://plot.ly/python/wind-rose-charts/) they define following data:
t=['North', 'N-E', 'East', 'S-E', 'South', 'S-W', 'West', 'N-W']
but the diagram does only show ticks for:
['North', 'East', 'South', 'West']

How do I show the other ticks as well? [ā€˜N-Eā€™, ā€˜S-Eā€™, ā€˜S-Wā€™, ā€˜N-Wā€™]
Unfortunately, Google and the documentation (https://plot.ly/python/reference/) do not answer this question.