Migrated repository
Go to file
2023-09-04 17:59:27 +08:00
.github chore: update ci 2023-08-24 19:09:11 +08:00
.husky refactor: remove unused files, and add husky and commitlint (#4383) 2023-03-23 20:43:53 +08:00
packages feat: support clippath in image node 2023-09-04 17:59:27 +08:00
.commitlintrc.js refactor: remove unused files, and add husky and commitlint (#4383) 2023-03-23 20:43:53 +08:00
.editorconfig refactor: remove unused files, and add husky and commitlint (#4383) 2023-03-23 20:43:53 +08:00
.gitignore feat: use serverside rendering for integration tests (#4793) 2023-08-10 10:22:51 +08:00
.npmrc Revert "V5 donut" 2023-08-24 10:17:57 +08:00
.prettierrc Revert "V5 donut" 2023-08-24 10:17:57 +08:00
CHANGELOG.md chore: commit history cleaning 2023-02-02 10:31:36 +08:00
grid.png v5-plugin-grid (#4681) 2023-08-02 10:00:05 +08:00
ISSUEHUNT.en-US.md chore: migrate issue hunt program to v5 branch (#4523) 2023-05-31 17:04:01 +08:00
ISSUEHUNT.md chore: migrate issue hunt program to v5 branch (#4523) 2023-05-31 17:04:01 +08:00
LICENSE chore: commit history cleaning 2023-02-02 10:31:36 +08:00
package.json chore: lint plugin legend 2023-08-31 15:36:15 +08:00
pnpm-lock.yaml chore: update version nums 2023-09-01 17:51:31 +08:00
pnpm-workspace.yaml Revert "V5 donut" 2023-08-24 10:17:57 +08:00
README.en-US.md fix: implement onZoom as empty function for 3d node (#4647) 2023-06-15 15:23:13 +08:00
README.md Revert "V5 donut" 2023-08-24 10:17:57 +08:00

G6: A Graph Visualization Framework in TypeScript

v5 Online Demo: https://g6.antv.antgroup.com/g6v5

travis-ci codecov typescript MIT npm package NPM downloads Percentage of issues still open

中文 README

What is G6

G6 is a graph visualization engine, which provides a set of basic mechanisms, including rendering, layout, analysis, interaction, animation, and other auxiliary tools. G6 aims to simplify the relationships, and help people to obtain the insight of relational data.

Developers are able to build graph visualization analysis applications or graph visualization modeling applications easily.

Powerful Animation and Interactions

Powerful Layouts

Features (5.0 Alpha)

  • Extensionable: All the modules (seven types) are integrated as plugins;
  • Style and animation standards, supports level of details (see the graph below);
  • Beautiful Built-in Theme and cound be customized (see the graph below);
  • Layouts with Great Performance: More than 10 layout algorithms, supports GPU and Rust parallel computing, and custom layouts;
  • Steerable Interactions: More than 10 basic interaction behaviors ;
  • Friendly User Experience: Complete documents for different levels of user requirements. TypeScript supported.
  • Multiple renderers: Canvas, SVG, WebGL;
  • 3D Graph:

The gif is not fully loaded, Click Here to See the Original Image

3D Graph

The gif is not fully loaded, Click Here to See the Original Image

Animations and Level of Details

Built-in Themes and Custom Themes

Seven Types of Plugins

  • (TODO: migrate from v4) Abundant Built-in Items: Nodes and edges with free configurations;
  • (TODO: migrate from v4) Convenient Components: Outstanding ability and performance;

G6 concentrates on the principle of 'good by default'. In addition, the custom mechanism of the item, interation behavior, and layout satisfies the customazation requirements.

Abundant Built-in Items

Installation (5.0 Alpha)

$ npm install @antv/g6@5.0.0-alpha.8

Usage (5.0 Alpha)

The configuration specification of the graph can be refered to: https://github.com/antvis/G6/blob/v5/packages/g6/src/types/spec.ts

Graph API: 2b44df189d/packages/g6/src/types/graph.ts (L23)

A simple graph demo:

Edit compassionate-lalande-5lxm7

import G6 from "@antv/g6";

const data = {
  nodes: [
    {
      id: "node1",
      label: "Node 1",
      data: {
        x: 150,
        y: 150,
      },
    },
    {
      id: "node2",
      label: "Node 2",
      data: {
        x: 400,
        y: 150,
      },
    },
  ],
  edges: [
    {
      id: "edge1",
      label: "Edge 1",
      source: "node1",
      target: "node2",
      data: {},
    },
  ],
};

const graph = new G6.Graph({
  container: "container",
  width: 500,
  height: 500,
  data,
  node: (innerModel) => ({
    ...innerModel,
    type: "circle",
    data: {
      ...innerModel.data,
      labelShape: {
        text: innerModel.label,
      },
      labelBackgroundShape: {},
      iconShape: {
        img: "https://gw.alipayobjects.com/zos/basement_prod/012bcf4f-423b-4922-8c24-32a89f8c41ce.svg",
      },
    },
  }),
  edge: (innerModel) => ({
    ...innerModel,
    type: "line",
    data: {
      labelShape: {
        text: innerModel.label,
      },
      labelBackgroundShape: {},
    },
  }),
});

Development (5.0 Alpha)

# enter packages/g6 from root of project
$ cd packages/g6

# install dependencies
$ npm install

# build
$ npm run build

# start the integration demos
$ npm run dev

# run test case
$ npm run test

# run test case in watch mode
npm test -- --watch ./tests/unit/node-spec
DEBUG_MODE=1 npm test -- --watch ./tests/unit/node-spec

Documents (5.0 Alpha)

The documents will be ready after the 5.0 version being stable.

How to Contribute

Please let us know what you are you going to help. Do check out issues for bug reports or suggestions first.

Issue Hunt

Refer to the Doc of Issue Hunt.

License

MIT license.