Is there a way to save dashbio graphs? (other than just taking a screenshot)
For example, plotly has "download plot" button, and also a way to do it with code,
dash_cytoscape
has its own way like this:
import dash_cytoscape as cyto
cyto.load_extra_layouts() # enable svg export
@app.callback(
Output("<element-id>", "generateImage"),
# ... other steps follow
- However, I can't find a way to save a
dashbio
graph, either in gui, or with code.