Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 69 by
jeich...@gmail.com: edges div-tag overlaps nodes a-tag
http://code.google.com/p/canviz/issues/detail?id=69
What steps will reproduce the problem?
1. generate a graph where edges overlap clickable node
What is the expected output? What do you see instead?
i expect the a-element representing a node to be clickable. since the
div-element representing an edge overlaps - think of an arrow at 45°, which
generates a pretty large div - the node it is not clickable.
What version of the product are you using? On what operating system?
any
Please provide any additional information below.
patching canvas.js to render edges prior to nodes solved the problem for me.
~/> diff canviz.js.dist canviz.js
402c402
< [this.subgraphs, this.nodes, this.edges].each(function(type) {
---
> [this.subgraphs, this.edges, this.nodes].each(function(type) {