I could never use this to make a callgraph in a project. Probably because I have two many lines. How does a .dot file looks for you?
Doxygen ( http://www.stack.nl/~dimitri/doxygen ) automatically creates callgraphs from sources code using graphviz. A good intro is at: https://romanegloo.wordpress.com/2012/03/29/generating-a-cal...
Graphviz in the browser
61–70 of 74 posts
Re: Graphviz in the browser
#62Earlier quoted context omitted.
Ah I see, since you're on the inside I'll ask, why haven't you (i.e. yworks) implemented the so-called delta drawing for flow charts? Seems like that would be a real differentiator? Or have you and I haven't been paying attention?
I have to admit, I'm not familiar with that¹. Do you have a link to a paper or something; I could ask our layout team. But probably the answer will be that few customers asked so far and/or it might be fairly easy to accomplish with customizing one of the existing layout algorithms. We did something similar with our example BPMN implementation where a pre-processing step applied constraints for the hierarchic layout…
[1] https://en.wikipedia.org/wiki/Sankey_diagram
[2] https://en.wikipedia.org/wiki/Charles_Joseph_Minard#Work
Re: Graphviz in the browser
#63Re: Graphviz in the browser
#64https://teespring.com/fr/robot-1846#pid=2&cid=2397&sid=front https://teespring.com/fr/get-home-run#pid=2&cid=581&sid=fron...
I like the robot one, but I don't believe that these in any way contribute to the post.
Re: Graphviz in the browser
#65Support for this would be very useful in a Jupyter notebook.
Re: Graphviz in the browser
#66Earlier quoted context omitted.
Sometimes the matrix, like for example the adjacency matrix for Wikipedia internal links, will be very sparse. Another reason to use relations rather than an inefficient, mostly empty implicit data structure. That Wikipedia adjacency matrix would be interesting to visualize, though. There are tools out there for visualizing sparse matrices as graphs: http://yifanhu.net/GALLERY/GRAPHS/
"using relations" or a particular data structure wasn't at all the point of this particular discussion. The point was that, for a simple directed graph, the edges represent a binary relationship. While for a weighted directed graph, it represents a relationship-matrix. For the graph being non-directed this would mean, that the relationship(-matrix) is symmetric. Meaning that any algebra, algorithm, proof, etc. on gra…
Re: Graphviz in the browser
#67Re: Graphviz in the browser
#68My Graphviz in browser with embedable alien URL. https://graphviz.gomix.me/ Source: https://gomix.com/#!/project/graphviz Sample graph in SVG: https://graphviz.gomix.me/graphviz?layout=dot&format=svg&mod...
Re: Graphviz in the browser
#69Support for this would be very useful in a Jupyter notebook.
Wouldn't Jupyter do most of the heavy lifting on the server side so it would be more fitting to render with graphviz there?
Re: Graphviz in the browser
#70This is a beautiful thing. D3 can do a lot but very few programs have replicated what graphviz's dot can do.
I still think dot could be reimplemented in d3. I agree dot is very expressive but it's starting to feel like TeX where it works great until you need to mix it into more recent applications.