我想对x轴的标签进行点击,以便文本包含链接。
到目前为止,这是我的代码的小提琴:http://jsfiddle.net/3gLfb401/
x轴标记由日期和内部版本号组成。内部版本号应该是一个链接。 在此示例中,如果链接到google.com或其他内容就足够了。
我已经在互联网上搜索并找到了一些可能会做的事情,但我不知道如何放置它。
我认为这样的事情可行:
x.html(d3.time.format("%Y-%m-%d")(d.date) + '<a href= "http://google.com" target="_blank">' + "#" + d.buildNb + "</a>")
这是形成标签文本的方法:
function formatDataToTick(d) {
return d3.time.format("%Y-%m-%d")(d.date) + " #" + d.buildNb;
}
答案 0 :(得分:2)
试试这个。
var xLabels = svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis)
.selectAll("text")
.style("text-anchor", "end")
.attr("dx", "-.8em")
.attr("dy", ".15em")
.attr("transform", function(d) {
return "rotate(-65)"
});
var insertTspans = function(a) {
var b = a.split(" ");
var textNode = d3.select(this);
textNode.text("");
textNode.append("tspan").text(b[0]);
var link = textNode.append("tspan").text(b[1]);
link.style("cursor", "pointer")
.style("fill","blue")
.style("text-decoration","underline")
.on("click", function(a) {
document.location.href = "http://www.example.com/" + a;
});
};
xLabels.each(insertTspans);