d3.js树链接未显示

时间:2016-05-09 15:36:14

标签: d3.js treeview

任何人都可以帮我这个代码!我无法找出为什么节点之间的链接没有显示!因为我添加了In()Out()函数,所以树不再是交互式的!

.node {
  cursor: pointer;
}

.node circle {
  fill: steelblue;
  stroke: steelblue;
  stroke-width: 1.5px;
}

.node text {
  font: 10px sans-serif;
}

.link {
  fill: steelblue;
  stroke: steelblue;
  stroke-width: 1.5px;
}
div.tooltip {
    position: absolute;
    text-align: left;
    width: 180px;
    height: 80px;
    padding: 2px;
    font: 12px sans-serif;
    background: lightsteelblue;
    border: 0px;
    border-radius: 8px;
    pointer-events: none;
  }

   

Plunkr

0 个答案:

没有答案