GraphViz & SVG frustration

I thought I’d do a little warm-up hack for HackDay, so I wrote a little thing to interrogate the backnetwork API and build a network diagram of all the relations using GraphViz. It started out looking quite promising, but I soon discovered that lots of GraphViz features just don’t work very well (even simple stuff like putting labels in boxes), and also that common SVG implementations suck. Firefox’ SVG rendering is just awful – no anti-aliasing, lots of misdrawing, all text defaulting to 18px Courier bold and worse. WebKit’s nightlies are in a different league in terms of accuracy and rendering quality, but since scrolling is broken, large diagrams are kind of hard to display. GraphViz’s layout mechanisms are pretty cool (if rather unpredictable), but the errors it makes for labelling stuff just makes it unusable. Its output directly to PNG was worse than the SVG renderings.

This was my first attempt at using both GraphViz and SVG, and I have to say I’m massively underwhelmed. I hope that I’m using a bad version, or there’s some issue with my font configs as it really should be possible to get decent output from what I’ve gathered.

Update
Thanks to Bruno Pedro, I have something to compare against, and now something to point the finger at… It appears that the OSX version of GraphViz from fink is a waste of space, and simply doesn’t support some vital features. Secondly, it’s clear that Mac Firefox’ SVG rendering is totally broken, but the windows version works ok (in Parallels). Thanks Bruno!

One Reply to “GraphViz & SVG frustration”

Leave a Reply