I cannot find anything in the documentation regarding this. When using the arrow
marker symbol in combination with the angle
option it seems that the arrows are pivoted around the tip of the arrow. For me this is a problem because I’m trying to align the errors onto a line, as shown in the figure.
Is there any way to pivot the arrows around the center and not the tip?
The code to produce this is really simple
fig.add_trace(
go.Scatter(
x=data["time"]
y=[0.5] * len(data["time"]),
mode="markers",
marker=dict(
size=12,
color="DarkSlateGrey",
symbol="arrow",
angle=data['wind_direction_10m_dominant'] - 180.0,
),
),
)