Skip to content

Files

Latest commit

34a8509 · Aug 23, 2021

History

History
49 lines (41 loc) · 938 Bytes

README.md

File metadata and controls

49 lines (41 loc) · 938 Bytes

README

本项目的初衷,参考资料的第一条

格式

目标格式

const data = {
  // 点集
  nodes: [
    {
      id: "node1",
      x: 100,
      y: 200,
    },
    {
      id: "node2",
      x: 300,
      y: 200,
    },
  ],
  // 边集
  edges: [
    // 表示一条从 node1 节点连接到 node2 节点的边
    {
      source: "node1",
      target: "node2",
    },
  ],
};

cheatsheet

npm install @antv/graphin@latest --save
npm install @antv/graphin-components@latest --save
npm install @antv/graphin-icons --save

资料

  1. neo4j-g6 讨论
  2. neovis
  3. motif
  4. neo4j-graphist
  5. graphin