plotly add path line work but arc not take effect
I try below code to add a arc between two line. path = “””M0,0 H100 A20 20 0 0 1 20 20 V100 The line works but the arc not work. full code: import plotly.graph_objs as go def save_fig(fig,pngname): fig.write_image(pngname,format=”png”, width=800, height=600, scale=1) print(“[[%s]]”%pngname) #fig.show() return def plot(pngname): title=”demo” xlabel=”x” ylabel=”y” xrange = [-10,110] yrange= … Read more