Best plot.ly equivalent for graphviz

So graphviz is super old but it’s a really good tool for plotting process flow charts. Any thoughts on the best way to reproduce this in Dash? I don’t need a full-blown network graph, just a simple process chart showing inputs and outputs in software pipeline. Thanks!
http://graphviz.org/

@nicolaskruchten make a neat flow chart visualizer for the callback tree, and it used viz.js, which is a hack (web assembly?) to bring graphviz to the web.
Here’s the Dash component: https://github.com/nicolaskruchten/dash_callback_chain/blob/master/src/components/CallbackChainVisualizer.react.js#L15
and viz.js: https://github.com/mdaines/viz.js/

All alpha/beta level stuff, not anything that plotly is officially maintaining.

1 Like

Thanks! I’ll check it out