Interactive Graphviz graphs in a web application

后端 未结 6 397
情深已故
情深已故 2021-01-30 14:04

I am trying to make a few interactive graph visualisations in my Django web application using Python. I found Graphviz and was able to output a static graph (as a .png image) on

6条回答
  •  闹比i
    闹比i (楼主)
    2021-01-30 14:51

    You can do something like this very simply just with DOT and HTML.

    Generate client-side maps and overlay them over your PNG images. (Insert the map code into the HTML page.)

    dot test.dot -Tpng -o test.png -Tcmapx -o test.map
    

    SVG exports are directly clickable.

提交回复
热议问题