有人知道如何从水平图中隐藏价值标签吗?
代码只是
d3.select("#graphs").selectAll(".horizon")
.data(data)
.enter().insert("div", ".bottom")
.attr("class", "horizon")
.call(context.horizon().height(25)
.colors(colors));
答案 0 :(得分:0)
这可以通过定义以下函数来解决
function empty_label() {
return "";
}
然后在这里使用它:
d3.select("#..")
.selectAll(".horizon")
.data(data)
.enter()
.insert("div", ".bottom")
.attr("class", "horizon")
.call(context.horizon().format(empty_label()));