Hi,
Iโm trying to move the labels of my scatterpolar plot withtout success.
I would like to display them above the different axes of my graph. More precisely, they would be oriented in different directions with the text starting at the origin of the axes of the plot.
In order to do so, I identified several attributes by displaying html code such as โtransformโ, โxโ and โyโ.
How could i change those attributes from the python code ?
Here the code for the plot:
import plotly.graph_objects as go
fig = go.Figure()
fig.add_trace(go.Scatterpolar(
r=[1, 5, 2],
theta=['Variable A','Variable B','Variable C'],
fill='toself',
))
fig.show()
Thanks in advance