我想在D3图的x轴上呈现HTML。基本上,我希望轴上的每个标签都是数据中另一列的超链接。
我已经尝试了
x.domain(data.map(function(d) { return "<a href=\"" + d.SiteUrl + "\">" + d.Name + "</a>"; }));
但根本没用。我没有获得超链接,而是获得实际的文本值:
<a href="http://example.com">Something</a>
我也尝试过添加
.tickFormat(function(d) { return "<a href=\"" + d.SiteUrl + "\">" + d.Name + "</a>"; })
.attr("x", ...)
改为
.attr("x", function(d) { return "<a href=\"" + d.SiteUrl + "\">" + x(d.Name) + "</a>"; })
在图表上。
我错过了什么吗?
答案 0 :(得分:4)
(基于https://groups.google.com/d/msg/d3-js/zoUjrm75iCg/EJg0YhnTw3YJ)
诀窍是使用svg:foreignObject
(如评论中@thatOneGuy所述),然后您可以在轴标签内放置任何HTML。 html
下面的函数传递data[i].name
,其中可以放置任意HTML。
var height = 500;
var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom")
.tickSize(0).tickPadding(0).tickFormat(function(d) {return '';});
var tx = -5;
var ty = 2;
var tw = 50;
var th = 10;
chart.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis)
.selectAll("g")
.append("svg:foreignObject")
.attr("width",tw)
.attr("height",th)
.attr("x", tx)
.attr("y", ty)
.append("xhtml:div")
.attr("class", "my-x-axis-label")
.html(function(schema) {return schema;});
CSS:
div.my-x-axis-label {
font: 10px sans-serif;
}