Migrated repository
Go to file
2024-05-20 20:50:50 +08:00
.github chore(site): update deploy.yml, packages.json, tsconfig.json (#5733) 2024-05-13 16:56:48 +08:00
.husky chore: update project lint staged config (#5256) 2023-12-12 10:53:57 +08:00
.vscode docs: plugin api docs and demo (#5703) 2024-05-07 20:43:47 +08:00
packages test(behaviors): add collapse expand node test case 2024-05-20 20:50:50 +08:00
scripts chore: add script to help checkout contributor branch (#5610) 2024-04-03 12:03:22 +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
.eslintignore chore: optimize project configs (#5299) 2023-12-28 11:05:09 +08:00
.eslintrc.js feat: generate behavior/plugin api docs by code annotations (#5669) 2024-04-24 15:33:33 +08:00
.gitignore chore: add auto-generated doc files to .gitignore (#5679) 2024-04-25 16:17:41 +08:00
.prettierignore chore: optimize project configs (#5299) 2023-12-28 11:05:09 +08:00
.prettierrc.js chore: optimize project configs (#5299) 2023-12-28 11:05:09 +08:00
CHANGELOG.md fix: combo link point 2023-09-21 16:52:05 +08:00
CONTRIBUTING.en-US.md docs: fix typos in elements.zh.md and CONTRIBUTING.en-US.md (#5598) 2024-03-28 00:13:07 +08:00
CONTRIBUTING.md build(site): fix #5570 (#5571) 2024-03-21 22:47:15 +08:00
LICENSE chore: commit history cleaning 2023-02-02 10:31:36 +08:00
package.json fix: update to latest @antv/g (#5702) 2024-05-15 13:00:22 +08:00
pnpm-workspace.yaml refactor: adjust project and add 3d extension package (#5497) 2024-03-05 19:13:37 +08:00
README.en-US.md feat: add plugin watermark (#5569) 2024-03-21 20:12:31 +08:00
README.md feat: add plugin watermark (#5569) 2024-03-21 20:12:31 +08:00
tsconfig.json refactor: adjust project and add 3d extension package (#5497) 2024-03-05 19:13:37 +08:00
turbo.json refactor: adjust project and add 3d extension package (#5497) 2024-03-05 19:13:37 +08:00

English | 简体中文

G6: A Graph Visualization Framework in TypeScript

The G6 5.0 beta version has been released. There are still many details and experience issues, and we welcome you to try it out and provide feedback. Use it with caution in production environments for now. The official version will be released with 6.6!

npm Version Build Status Coverage Status npm Download typescript npm License

IntroductionExamplesTutorialAPI

G6 is a graph visualization engine. It provides basic capabilities for graph visualization and analysis such as drawing, layout, analysis, interaction, animation, themes, and plugins. With G6, users can quickly build their own graph visualization and analysis applications, making relational data simple, transparent, and meaningful.

Features

G6, as a professional graph visualization engine, boasts the following features:

  • Rich Elements: It comes with a variety of built-in node, edge, and Combo UI elements with extensive style configurations, supports data callbacks, and has a flexible mechanism for extending custom elements.
  • Controllable Interactions: It includes more than 10 built-in interaction behaviors and offers a rich array of events, facilitating the expansion of custom interactive behaviors.
  • High-Performance Layout: The engine features more than 10 common graph layouts, some of which leverage GPU and Rust parallel computing for enhanced performance, and it supports custom layout development.
  • Convenient Plugins: Optimized built-in plugin functionality and performance, with flexible extensibility, making it easier to implement customized business capabilities.
  • Multiple Theme and Palettes: Provides two sets of built-in themes, light and dark, that integrate over 20 popular community color palettes based on the AntV new color scheme.
  • Multi-Environment Rendering: Harnessing the power of G, it supports rendering in Canvas, SVG, and WebGL, as well as server-side rendering with Node.js; it also offers plugin packages that provide powerful 3D rendering and spatial interactions based on WebGL.
  • React Ecosystem: By utilizing the React front-end ecosystem, it supports React nodes, significantly enriching the presentational styles of G6 nodes.

🔨 Getting Started

G6 is usually installed via a package manager such as npm or Yarn.

$ npm install @antv/g6@next
$ yarn add @antv/g6@next

The Graph object then can be imported from G6.

<div id="container"></div>
import { Graph } from '@antv/g6';

// Get the Data.
const data = {
  nodes: [/* your nodes data */],
  edges: [/* your edges data */],
};

// Create the Graph instance.
const graph = new Graph({
  container: 'container',
  autoFit: 'view',
  data,
  node: {
    palette: {
      type: 'group',
      field: 'cluster',
    }
  },
  layout: {
    type: 'force',
  },
  behaviors: ['drag-canvas', 'drag-node'],
});

// Render the Graph.
graph.render();

All goes well, you can get the following lovely graph!

🌍 Ecosystem

  • Ant Design Charts: A React chart library based on G2, G6, X6, L7.
  • Graphin: A simple React wrapper based on G6, as well as an SDK for developing graph visualization applications.

For more ecosystem open-source projects, contributions are welcome. Please feel free to submit a PR for inclusion.

📮 Contributing

  • Issue Reporting: If you encounter any issues with G6 during use, please feel free to submit an issue, along with the minimal sample code that can reproduce the problem.
  • Contribution Guide: Information on how to get involved in the development and contribution to G6.
  • Ideas Discussion: Discuss your ideas on GitHub Discussions or in the DingTalk group.

📄 License

MIT.