I created a graph through Graphviz. The weights on the edges are table of links. I want this table to be expandable/collapsible by click or mouse hover. I created this graph and tables the following way(* In this example exist a table only on one edge.):
digraph prof {
ratio = fill;
node [style=filled, fillcolor=lightblue];
bees->larvae[label=2,penwidth=0.5]
cattle->dog[label=1,penwidth=0.25]
.
.
.
jackal->dog[label=1,penwidth=0.25]
pigs->flying[label=1,penwidth=0.25,label=<<table>
<tr><td href="http://google.com">Google</td></tr>
<tr><td href="http://bing.com">bing</td></tr>
</table>>]
}
So, how can I make this table collapsible/expandable? Thanks..