echarts关系节点图怎么直接显示name字段?
由于项目需求,需要直接显示echarts关系节点的name字段,而非鼠标移入节点的时候才显示。如图:
是否有支持直接显示节点name属性的配置呢?
目前echarts的配置如下:
option = {
legendHoverLink: false,
tooltip: {
show: true,
formatter: '{b0}'
},
legend: {
data: [
{
name: '文件',
icon: "image://../image/file.png"
}, {
name: '文件块',
icon: "image://../image/chunk.png"
}, {
name: '节点',
icon: "image://../image/node.png"
}
]
},
series: [
{
type: 'graph',
layout: 'force',
animation: false,
edgeSymbol: [
'none', 'arrow'
],
label: {
show: false,
position: 'bottom',
color: "#666"
},
symbolSize: 60,
draggable: true,
data: webkitDep
.nodes
.map(function (node, idx) {
node.id = idx;
return node;
}),
categories: webkitDep.categories,
force: {
initLayout: 'circular',
repulsion: 2000,
edgeLength: 300
},
edges: webkitDep.links
}
]
};
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
已解决,使用下面配置即可