0

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

在此处输入图像描述

代码很简单

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

1 回答 1

0

这可以通过定义以下函数来解决

function empty_label() {
  return "";
} 

然后在这里使用它:

d3.select("#..")
  .selectAll(".horizon")
  .data(data)
  .enter()
  .insert("div", ".bottom")
  .attr("class", "horizon")
  .call(context.horizon().format(empty_label()));
于 2013-09-03T21:49:09.747 回答