摆脱c3.js的中间线

时间:2016-12-07 16:50:08

标签: javascript d3.js c3.js

任何人都知道如何摆脱图片中的这一行?我无法在开发人员工具上找到它。 只有当我将鼠标悬停在其中一个栏(任何栏)上时才会出现。

我想要尝试的是:

 d3.selectAll("the nane of the line blah blah").filter(function(d) {
      return d === 0;
 }).remove();

enter image description here

2 个答案:

答案 0 :(得分:2)

这是一个网格线。 c3.js解决方案只是:

j

或者,使用d3选择,选择他们所属的组(其类为“c3-xgrids”)并删除该组:

grid: {
    x: {
    show: false
    }
}

如果您只想选择一行,则其类名为“c3-xgrid”。

答案 1 :(得分:1)

如果它在鼠标悬停时弹出,则需要:

grid: {
    focus: {
        show: false
    }

}

它在c3参考文档中有一个链接,但是当你点击它时没有实际的内容或占位符:-p http://c3js.org/reference.html#grid-focus-show