I have this code as follows;
self.fig.add_trace(go.Scatterpolar(
r=_r,
theta=_theta,
fill="toself",
line=_line,
name=self.name))
self.fig.update_layout(
polar=dict(
radialaxis=dict(
visible=True,
range=[0, 100],
linecolor=black,
gridcolor=black,
dtick=25
)),
showlegend=False
)
Which displays the following chart:
There are a number of things I would like to do and I cannot find how to do it. I would like to:
- Close the line
- Replace the white lines between the centre and the edge of the circle with black lines
- Have smaller labels and/or angle them
How do I do this, I can't find it in the docs

Dummy data:
Plot code based on documentation:
To add that to a trace you can do:
You then need to do all the
update_polarscalls onfiginstead ofpolarfig.