echart图形显示重复链接

时间:2018-09-18 09:48:01

标签: javascript echarts

我正在尝试创建由以下节点和链接组成的图

      var graph = {
    nodes : [{
      id: 1,
      name: 'A'
    },{
      id: 3,
      name: 'C'
    },{
      id: 4,
      name: 'D'
    }],
    links : [{
      id: 2,
      source: '1',
      target: '3',
      value: 0.4
    },{
      id: 4,
      source: '1',
      target: '4',
      value: 0.4
    },{
      id: 5,
      source: '2',
      target: '4',
      value: 0.4
    },{
      id: 6,
      source: '3',
      target: '4',
      value: 0.1
    },{
      id: 9,
      source: '3',
      target: '4',
      value: 0.4
    }],
  };

如您所见,2个节点之间可能存在重复的链接。但是,在生成图形时,只会显示单个链接。如何显示节点之间的所有链接。

为以上数据生成的图形如下Graph with nodes and links

0 个答案:

没有答案