Hello
Do you perhaps know how to add a line break to the title text of a scatterpolar plot?
I tried âbrâ in the brackets < and > but it doesnât work. This is my code:
PLOTTING OF UNIFORMLY DISTRIBUTED SET OF FRACTURES.
fig1 = go.Figure()
fig1.add_traces(go.Scatterpolar(r = fraDat[âpoleRadâ],
theta = fraDat[âpAziâ],
thetaunit = âdegreesâ,
name = âfracture polesâ,
mode = âmarkersâ,
marker_size = 4,
line_color = âroyalblueâ,
showlegend = True))
fig1.update_layout(margin = dict(l=40, r=40, t=60, b=40),
paper_bgcolor = âLightSteelBlueâ,
width = 400, height = 400,
title_text = 'Uniformly distributed set of â+str(n_fracs)+
â fractures
(Schmidt Equal Area stereonet)â,
title_font_size = 12,
font = dict(size = 10))
fig1.update_polars(radialaxis = dict(range=[0, 1],
tickvals = [0.1233, 0.2456, 0.3660,
0.4837, 0.5977, 0.7071,
0.8111, 0.9090, 1],
showticklabels = False),
angularaxis = dict(direction=âclockwiseâ, dtick=30))
fig1.show()
Thanks a lot for your help.
Best regards,
Martin