I am trying to make a Arc diagram equivalent to below matplotlib chart:
Is there any chart type/example in plotly python which can be used to make this chart?
I am trying to make a Arc diagram equivalent to below matplotlib chart:
Is there any chart type/example in plotly python which can be used to make this chart?
Hi @gsudhanshu,
Thereβs nothing built-in to plotly.js to construct arcs. You could do this using SVG arcs (See https://developer.mozilla.org/en-US/docs/Web/SVG/Tutorial/Paths#Arcs) specified to plotly as path
shapes (See https://plot.ly/python/shapes/#svg-paths). But it would admittedly take a bit of work.
-Jon