使文本成为svg中的链接

时间:2016-01-21 10:19:09

标签: d3.js svg hyperlink

我使用d3绘制图表(我使用thix示例:https://gist.github.com/keiranlovett/8766741)。我需要添加一个链接。我正在添加文字,我试图将其设为链接,但它并未显示为链接(我使用的是IE 11):

svg.append("g") //without doing this, impossible to put grid lines behind text  

     .attr({
            xmlns: "http://www.w3.org/2000/svg",
            xlink: "http://www.w3.org/1999/xlink",
            width: 100,
            height: 300
        })
     .attr({ "xlink:href": "#" })
     .on("mouseover", function (d, i) {
            //alert('aaa');
            d3.select(this)
                .attr({ "xlink:href": "http://example.com/" + "eeeeeeeeeeeeeeeeeee" });
        })
     .selectAll("text")

     .data(tasks)
     .enter()
     .append("text")

     .text(function (d) {
         if (ammendmentsLinks.indexOf(d.contract) < 0) {
             ammendmentsLinks = ammendmentsLinks + d.contract + ";";
             return d.contract;
             //return "";
         }
         else {
             return "";
         }
     })
     .attr("x", 20)
     .attr("y", function (d, i) {
         return i * 20;
     })
     .attr("font-size", 11)
     .attr("text-anchor", "start")
     .attr("text-height", 14)
     .on("click", function (d) {
         return click(d.contract);
     });

我还添加了http://jsfiddle.net/christopheviau/B9zcF/的一些代码行,以使文字成为链接,但它无效。

如何将文字设为链接?

2 个答案:

答案 0 :(得分:2)

尝试更改以下行:

d3.select(this)
            .attr({ "xlink:href": "http://example.com/" + "eeeeeeeeeeeeeeeeeee" });

d3.select(this)
            .wrap("<a xlink:href \"http://example.com/\"></a>")
            .text("eeeeeeeeeeeeeeeeeee");

并确保<svg>代码已指定xmlns:xlink="http://www.w3.org/1999/xlink"

答案 1 :(得分:0)

这也是一个很好的解决方案:

  d3.select(this)
              .text(d)
              .on("click", function() { window.open("https://www.random.com/" + d ); });