是否可以使用infovis/jit在空间树中创建曼哈顿风格的边。
在:http://philogb.github.com/jit/static/v20/Docs/files/Options/Options-Edge-js.html上没有选项。但我看到自定义边是可能的。
已经有人这么做了吗?
如果你还没有弄清楚这一点(以及其他读者)…
在传递构造函数选项时,尝试将边缘type
指定为bent:line
,如下所示。
Edge: {
type: 'bent:line',
overridable: true,
color: "#000000",
lineWidth: 2
}
Use This
https://philogb.github.io/jit/static/v20/Docs/files/Visualizations/Spacetree-js.html ST.Plot.EdgeTypes
ST.Plot.EdgeTypes
这个类包含一个图的列表。邻接内置类型。实现的边缘类型是' none ', ' line ', ' arrow ', ' quadratic:begin ', ' quadratic:end ', ' bezier '。您可以添加自定义边缘类型,将您的可视化定制到极致。