Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I know I can get the click event to fire on the LINK in a force layout by doing something like this:

//needed to draw edges
var path = svg.append("svg:g").selectAll("path")
  .data(force.links())
  .enter().append("svg:path")
  .attr("class", function (d) { return "link " + d.LinkType; })
  .attr("marker-end", function (d) { return "url(#" + d.LinkType+ ")"; })
  .on("click", function (d, i) { alert(d.TheText); });

However, I need to get the click event on the label of the edge, this isn't working...

    //needed to draw labels on edges
    var path2 = svg.append("svg:g").selectAll("path")
        .data(force.links())
        .enter().append("g")
            .attr("class", "edge")
            .attr("id", function (d) { return d.ID; })

        // Append text to Link edges
        var linkText = path2
            .data(force.links())
            .append("text")
            .attr("font-family", "Arial")
            .attr("x", function (d) {
                if (d.target.x > d.source.x) { return (d.source.x + (d.target.x - d.source.x) / 2); }
                else { return (d.target.x + (d.source.x - d.target.x) / 2); }
            })
            .attr("y", function (d) {
                if (d.target.y > d.source.y) { return (d.source.y + (d.target.y - d.source.y) / 2); }
                else { return (d.target.y + (d.source.y - d.target.y) / 2); }
            })
            .attr("fill", "Maroon")
            .style("font", "normal 11px Arial")
            .attr("dy", ".35em")
            .text(function (d) { return d.TheText; })
            **.on("click", function (d, i) { alert(d.TheText); });**

Any advice would be great!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.