2020-02-07 18:02:53 +08:00
# G6: A Graph Visualization Framework in TypeScript.
2020-08-17 14:51:02 +08:00
2018-09-04 11:37:53 +08:00
![](https://user-images.githubusercontent.com/6113694/45008751-ea465300-b036-11e8-8e2a-166cbb338ce2.png)
2018-06-05 23:58:10 +08:00
2020-09-08 16:06:33 +08:00
[![travis-ci ](https://img.shields.io/travis/antvis/g6/master.svg )](https://travis-ci.org/antvis/g6) [![codecov ](https://codecov.io/gh/antvis/G6/branch/master/graph/badge.svg )](https://codecov.io/gh/antvis/G6) ![typescript ](https://img.shields.io/badge/language-typescript-red.svg ) ![MIT ](https://img.shields.io/badge/license-MIT-000000.svg ) [![npm package ](https://img.shields.io/npm/v/@antv/g6.svg )](https://www.npmjs.com/package/@antv/g6) [![NPM downloads ](http://img.shields.io/npm/dm/@antv/g6.svg )](https://npmjs.org/package/@antv/g6) [![Percentage of issues still open ](http://isitmaintained.com/badge/open/antvis/g6.svg )](http://isitmaintained.com/project/antvis/g6 'Percentage of issues still open')
2018-06-05 23:58:10 +08:00
[中文 README ](README-zh_CN.md )
2020-02-26 23:20:53 +08:00
## What is G6
2020-08-17 14:51:02 +08:00
2020-02-26 23:20:53 +08:00
[G6 ](https://github.com/antvis/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.
< img src = 'https://gw.alipayobjects.com/mdn/rms_f8c6a0/afts/img/A*zTjwQaXokeQAAAAAAAAAAABkARQnAQ' width = 550 / >
Developers are able to build graph visualization **analysis** applications or graph visualization **modeling** applications easily.
< img src = 'https://gw.alipayobjects.com/mdn/rms_f8c6a0/afts/img/A*zau8QJcVpDQAAAAAAAAAAABkARQnAQ' height = 200 / > < img src = 'https://gw.alipayobjects.com/mdn/rms_f8c6a0/afts/img/A*RIlETY_S6IoAAAAAAAAAAABkARQnAQ' height = 200 / >
< img src = 'https://gw.alipayobjects.com/mdn/rms_f8c6a0/afts/img/A*cDzXR4jIWr8AAAAAAAAAAABkARQnAQ' height = 150 / > < img src = 'https://gw.alipayobjects.com/mdn/rms_f8c6a0/afts/img/A*DifbSahOblAAAAAAAAAAAABkARQnAQ' height = 150 / > < img src = 'https://gw.alipayobjects.com/mdn/rms_f8c6a0/afts/img/A*HTasSJGC4koAAAAAAAAAAABkARQnAQ' height = 150 / >
> Powerful Animation and Interactions
< img src = "https://user-images.githubusercontent.com/6113694/44995293-02858600-afd5-11e8-840c-349e4730d63d.gif" height = 150 > < img src = "https://gw.alipayobjects.com/mdn/rms_f8c6a0/afts/img/A*I9OdTbXJIi0AAAAAAAAAAABkARQnAQ" height = 150 > < img src = "https://user-images.githubusercontent.com/6113694/44995332-2ba61680-afd5-11e8-8cab-db0e9d08ceb7.gif" height = 150 >
< img src = "https://gw.alipayobjects.com/zos/rmsportal/HQxYguinFOMIXrGQOABY.gif" height = 150 > < img src = "https://gw.alipayobjects.com/zos/rmsportal/nAugyFgrbrUWPmDIDiQm.gif" height = 150 > < img src = "https://gw.alipayobjects.com/mdn/rms_f8c6a0/afts/img/A*xoufSYcjK2AAAAAAAAAAAABkARQnAQ" height = 150 >
> Powerful Layouts
## Features
2020-08-17 14:51:02 +08:00
2020-02-26 23:20:53 +08:00
- Abundant Built-in Items: Nodes and edges with free configurations;
- Steerable Interactions: More than 10 basic interaction behaviors ;
- Powerful Layout: More than 10 layout algorithms;
- Convenient Components: Outstanding ability and performance;
- Friendly User Experience: Complete documents for different levels of user 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 customazation requirements.
< img src = 'https://gw.alipayobjects.com/mdn/rms_f8c6a0/afts/img/A*Y0c6S7cxjVkAAAAAAAAAAABkARQnAQ' width = 800 height = 200 / >
> Abundant Built-in Items
2018-06-06 09:56:44 +08:00
2018-06-05 23:58:10 +08:00
## Installation
```bash
$ npm install @antv/g6
```
2019-10-08 14:39:45 +08:00
## Usage
2020-02-26 23:20:53 +08:00
< img src = "https://gw.alipayobjects.com/mdn/rms_f8c6a0/afts/img/A*khbvSrptr0kAAAAAAAAAAABkARQnAQ" width = 437 height = 148 / >
2018-06-05 23:58:10 +08:00
```js
import G6 from '@antv/g6';
const data = {
2020-02-14 10:10:54 +08:00
nodes: [
{
id: 'node1',
2020-02-26 23:20:53 +08:00
label: 'Circle1',
x: 150,
2020-08-17 14:51:02 +08:00
y: 150,
2020-02-14 10:10:54 +08:00
},
{
id: 'node2',
2020-02-26 23:20:53 +08:00
label: 'Circle2',
x: 400,
2020-08-17 14:51:02 +08:00
y: 150,
},
2020-02-14 10:10:54 +08:00
],
edges: [
{
source: 'node1',
2020-08-17 14:51:02 +08:00
target: 'node2',
},
],
2018-06-05 23:58:10 +08:00
};
2020-02-26 23:20:53 +08:00
2018-06-05 23:58:10 +08:00
const graph = new G6.Graph({
2020-02-26 23:20:53 +08:00
container: 'container',
2018-06-05 23:58:10 +08:00
width: 500,
2019-03-22 11:37:20 +08:00
height: 500,
2019-09-27 12:13:22 +08:00
defaultNode: {
2020-11-09 17:23:39 +08:00
type: 'circle',
2020-08-17 14:51:02 +08:00
size: [100],
2020-02-26 23:20:53 +08:00
color: '#5B8FF9',
2019-09-27 12:13:22 +08:00
style: {
2020-02-26 23:20:53 +08:00
fill: '#9EC9FF',
2020-08-17 14:51:02 +08:00
lineWidth: 3,
2020-02-14 10:10:54 +08:00
},
2020-02-26 23:20:53 +08:00
labelCfg: {
style: {
fill: '#fff',
2020-08-17 14:51:02 +08:00
fontSize: 20,
},
},
2020-02-14 10:10:54 +08:00
},
2020-02-26 23:20:53 +08:00
defaultEdge: {
style: {
2020-08-17 14:51:02 +08:00
stroke: '#e2e2e2',
},
},
2018-06-05 23:58:10 +08:00
});
2020-02-26 23:20:53 +08:00
2019-09-27 12:13:22 +08:00
graph.data(data);
graph.render();
2018-06-05 23:58:10 +08:00
```
2020-02-26 23:20:53 +08:00
[![Edit compassionate-lalande-5lxm7 ](https://codesandbox.io/static/img/play-codesandbox.svg )](https://codesandbox.io/s/compassionate-lalande-5lxm7?fontsize=14& hidenavigation=1& theme=dark)
For more information of the usage, please refer to [Getting Started ](https://antv-g6.gitee.io/en/docs/manual/getting-started ).
2018-06-05 23:58:10 +08:00
## Development
```bash
$ npm install
# run test case
2020-08-17 17:18:30 +08:00
$ npm test
# run test case in watch mode
npm test -- --watch ./tests/unit/algorithm/find-path-spec
DEBUG_MODE=1 npm test -- --watch ./tests/unit/algorithm/find-path-spec
2018-06-05 23:58:10 +08:00
# build watching file changes and run demos
2020-06-08 16:46:28 +08:00
$ npm run demos
2018-06-05 23:58:10 +08:00
```
2020-02-26 23:20:53 +08:00
## Documents
2020-08-17 14:51:02 +08:00
2020-02-26 23:20:53 +08:00
- < a href = 'https://g6.antv.vision/en/docs/manual/tutorial/preface' target = '_blank' > Tutorial</ a >
2020-08-31 09:42:21 +08:00
- < a href = 'https://g6.antv.vision/en/docs/manual/middle/overview' target = '_blank' > Middle Guides</ a >
2020-09-01 18:43:11 +08:00
- < a href = 'https://g6.antv.vision/en/docs/manual/advanced/coordinate-system' target = '_blank' > Further Reading</ a >
2020-11-17 10:09:34 +08:00
- < a href = 'https://g6.antv.vision/en/docs/api/Graph' target = '_blank' > API Reference</ a >
2020-02-26 23:20:53 +08:00
## G6 Communication Group
2020-05-21 11:58:36 +08:00
Users are welcome to join the **G6 Communication Group** or **G6 Communication Group-2** (They are DingTalk groups). We also welcome the github issues. The Group is full, join Group-2 instead.
2020-03-20 19:59:34 +08:00
2020-05-21 11:58:36 +08:00
< img src = 'https://gw.alipayobjects.com/mdn/rms_f8c6a0/afts/img/A*LFppR6_BfdYAAAAAAAAAAABkARQnAQ' width = 400 alt = "" >
2020-03-20 19:59:34 +08:00
2020-05-21 11:58:36 +08:00
< img src = 'https://gw.alipayobjects.com/mdn/rms_f8c6a0/afts/img/A*hzfaSrAj0jkAAAAAAAAAAABkARQnAQ' width = 400 alt = "" >
2020-02-26 23:20:53 +08:00
2018-06-05 23:58:10 +08:00
## How to Contribute
2020-02-26 23:20:53 +08:00
Please let us know what you are you going to help. Do check out [issues ](https://github.com/antvis/g6/issues ) for bug reports or suggestions first.
2018-06-05 23:58:10 +08:00
2018-06-06 10:05:37 +08:00
To become a contributor, please follow our [contributing guide ](https://github.com/antvis/g6/blob/master/CONTRIBUTING.md ).
2018-09-04 00:03:06 +08:00
## License
[MIT license ](./LICENSE ).