Skip to content

GraphvizExamples MapNodesSvg

Attila Sukosd edited this page Mar 15, 2013 · 1 revision

The individual nodes of the image point to the various pages on the Edgewall Trac project site.

Notice that the entire oval for the Trac node is an active link while the others are only active on the text and the oval outline. The use of the style=filled_' and '_fillcolor=red force the SVG links to be activated for the whole node.

#!graphviz.circo/svg
digraph G {
    Trac [style=filled, fillcolor=red, URL="http://trac.edgewall.com/"];
    TracProject [URL="http://projects.edgewall.com/trac/"];
    Guide [URL="http://projects.edgewall.com/trac/wiki/TracGuide"];
    FAQ [URL="http://projects.edgewall.com/trac/wiki/TracFaq"];
    Download [URL="http://projects.edgewall.com/trac/wiki/TracDownload"];
    ChangeLog [URL="http://projects.edgewall.com/trac/wiki/ChangeLog"];
    MailingList [URL="http://projects.edgewall.com/trac/wiki/MailingList"];
    TracProject [URL="http://projects.edgewall.com/trac/wiki/TracProject"];
    RoadMap [URL="http://projects.edgewall.com/trac/wiki/RoadMap"];
    Team [URL="http://projects.edgewall.com/trac/wiki/TracTeam"];

    Trac -> TracProject;
    Trac -> Guide;
    Trac -> FAQ;
    Trac -> Download;
    Trac -> ChangeLog;
    Trac -> MailingList;
    Trac -> RoadMap;
    Trac -> Team;
}

Version: 1 Time: Sun Sep 2 00:24:40 2007 Author: trac (None) IP: 127.0.0.1

Clone this wiki locally