D3:Cubism.js:隐藏Horizo​​n Charts的标签

时间:2013-08-20 18:42:43

标签: cubism.js

有人知道如何从水平图中隐藏价值标签吗?

enter image description here

代码只是

d3.select("#graphs").selectAll(".horizon")
    .data(data)
    .enter().insert("div", ".bottom")
    .attr("class", "horizon")
    .call(context.horizon().height(25)
                           .colors(colors));

1 个答案:

答案 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()));