Need help in creating network graph using visjs in angularjs

旧巷老猫 提交于 2019-12-22 10:06:34

问题


I need help in making this plunker work something similar to this vis example in angularjs.

I am using <vis-network data="data" options="options"></vis-network> tag and below data and options

data

var nodes = [
  {id: 1, label: 'Node 1'},
  {id: 2, label: 'Node 2'},
  {id: 3, label: 'Node 3'},
  {id: 4, label: 'Node 4'},
  {id: 5, label: 'Node 5'}
];
var edges = [
  {from: 1, to: 3},
  {from: 1, to: 2},
  {from: 2, to: 4},
  {from: 2, to: 5}
];
$scope.data = VisDataSet({
  nodes: nodes,
  edges: edges
});

options

$scope.options = {
  autoResize: true,
  height: '100%',
  width: '100%'
};

There is no console error, what am I missing. Please help.


回答1:


Your data is plain object, however nodes & edges should be an object of VisDataSet

var nodes = VisDataSet([
  {id: 1, label: 'Node 1'},
  {id: 2, label: 'Node 2'},
  {id: 3, label: 'Node 3'},
  {id: 4, label: 'Node 4'},
  {id: 5, label: 'Node 5'}
]);
var edges = VisDataSet([
  {from: 1, to: 3},
  {from: 1, to: 2},
  {from: 2, to: 4},
  {from: 2, to: 5}
]);
$scope.data = {
  nodes: nodes,
  edges: edges
};

I have updated your plunker here.



来源:https://stackoverflow.com/questions/31019327/need-help-in-creating-network-graph-using-visjs-in-angularjs

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!