I’m trying to plot arrows with plotly’s graph object package using plotly.graph_objects.Scatter but couldn’t figure out how to set the right parameters in order to show only arrows on one end of the line:
** fig_chips.add_trace(go.Scatter(x=[0,1,0,2,0,1], y=[0,1,0,1,0,0], mode=”lines+markers”,
marker= dict(size=10,symbol= “arrow”, angleref=”previous”))) **
At the moment the x and y coordinates always showing back to (0,0) as an “workaround” leading to the following plot:
So, my question is there are more elegant solution to plot arrowas with plotly’s graph object package or plotly in general?
henry is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.