0
在使用graph图时,节点数量大于1010个时使用focusNodeAdjacency,节点和连线能正常高亮,但是节点的label不能正常显示出来。
- ECharts version [ECharts 版本]:^4.1.0
- Browser version [浏览器类型和版本]:chrome 69.0.3497.100
- OS Version [操作系统类型和版本]:win10
确认是否确实有此问题。若是特意这样控制,请官方文档上标注限制值,若确实为bug,修复此bug.
option = {
title: {
text: 'NPM Dependencies'
},
// animationDurationUpdate: 1500,
// animationEasingUpdate: 'quinticInOut',
series : [
{
type: 'graph',
layout: 'force',
// progressiveThreshold: 700,
data: data.node,
edges: data.link,
label: {
emphasis: {
position: 'right',
show: true,
}
},
roam: true,
focusNodeAdjacency: true,
lineStyle: {
normal: {
width: 0.5,
curveness: 0.3,
opacity: 0.7
}
}
}
]
}