Introduction

3 min read
g6 banner

Coverage Status npm package NPM downloads Percentage of issues still open

中文简介

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 complex relationships, and help people to obtain the insight of relational data.
img

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

imgimgimg

imgimgimg

Powerful Layouts

img

Powerful Animation and Interactions

Features

  • Excellent Perforamnce: Supports large graph visualization and interactive exploration;
  • Abundant Built-in Items: Nodes and edges with free configurations;
  • Steerable Interactions: More than 10 basic interaction behaviors ;
  • Powerful Layouts: More than 10 layout algorithms;
  • Convenient Components: Outstanding abilities and performance;
  • Friendly User Experience: Complete documents for different levels of requirements. TypeScript supported.

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

img

Abundant Built-in Items

Installation

$ npm install @antv/g6

Usage

img
// The source data
const data = {
  // The array of nodes
  nodes: [
    {
      id: 'node1',
      x: 100,
      y: 200,
    },
    {
      id: 'node2',
      x: 300,
      y: 200,
    },
  ],
  // The array of edges
  edges: [
    // An edge links from node1 to node2
    {
      source: 'node1',
      target: 'node2',
    },
  ],
};

// Instantiate the Graph
const graph = new G6.Graph({
  container: 'mountNode', // The container id or HTML node of the graph canvas.
  // The width and the height of graph canvas
  width: 800,
  height: 500,
});
// Load the data
graph.data(data);
// Render the graph
graph.render();

Edit compassionate-lalande-5lxm7

For more information about the usage, please refer to Getting Started.

Documents

Official independent product: Graphin

Graphin stands for Graph Insight. It's a toolkit based on G6 and React, that focuses on relational visual analysis. It's simple, efficient, out of the box.

Some implementations combined with front-end libraries from the third party:

G6 Communication Group

Welcome to join the G6 Communication Group or G6 Communication Group-2 (DingTalk groups). We also welcome the github issues.

How to Contribute

Please let us know what you are you going to help. Do check out issues for bug reports or suggestions first.
To become a contributor, please follow our Contributing Guide.

License