I want to colorize each label_column with label_color using fig.update_polars(angularaxis_color=color) or fig.update_polars(angularaxis=dict(color=color)) but I canโt.
How can I color each column_label the same color as the label_color? I want aa to be written in pink, bb in blue, cc in pink and dd in blue.
color_palette = {'Target': 'red', 'Current': 'blue'}
fig = px.line_polar(answers_avg,
r = 'value',
theta = 'label_column',
line_close = True,
line_dash = 'group')
for group, color in color_palette.items():
fig.update_traces(
line=dict(color=color),
selector=dict(name=group))
fig.show()