KnowledgeOP.setOption({
tooltip: {
show: false,
},
legend: [{
selectedMode: true,
data: categories.map(a => a.name),
}],
// toolbox: {
// show: true,
// feature: {
// myButtons: {
// show: true, // 是否显示
// title: '详情', // 鼠标移动上去显示的文字
// icon: 'image://../images/icon-list.png',
// option: {},
// onclick() { // 点击事件,这里的option1是chart的option信息
// KnowledgeOP.dispose();
// owner.graphTemplate(nodeSize, 'detail', categories, fliterNodes, links);
// },
// },
// },
// },
series: [
{
name: 'Les Miserables',
type: 'graph',
layout: 'force',
data: fliterNode,
links,
categories,
roam: true,
force: {
repulsion: 12,
// 必须为true
layoutAnimation: false,
},
},
],
});