快速开始

阅读时间约 2 分钟

在线体验 G6

访问 图表示例 无需任何环境配置即可在线体验 G6。

创建一个简单的图

在本例子中,我们将基于 HTML 页面使用 G6 创建一个简单的图。

将下面的代码复制到一个 HTML 文件中,然后在浏览器中打开这个文件:

<!-- 准备一个容器 -->
<div id="container" style="width: 500px; height: 500px"></div>
<!-- 引入 G6 的 JS 文件 -->
<script src="https://unpkg.com/@antv/g6@5/dist/g6.min.js"></script>
<script>
const { Graph } = G6;
fetch('https://assets.antv.antgroup.com/g6/graph.json')
.then((res) => res.json())
.then((data) => {
const graph = new Graph({
container: 'container',
autoFit: 'view',
data,
node: {
style: {
size: 10,
},
palette: {
field: 'group',
color: 'tableau',
},
},
layout: {
type: 'd3-force',
manyBody: {},
x: {},
y: {},
},
behaviors: ['drag-canvas', 'zoom-canvas', 'drag-element'],
});
graph.render();
});
</script>

会得到如下所示的图:

fetch('https://assets.antv.antgroup.com/g6/graph.json')
.then((res) => res.json())
.then((data) =>
createGraph(
{
data,
autoFit: 'view',
animation: false,
node: {
style: {
size: 10,
},
palette: {
field: 'group',
color: 'tableau',
},
},
layout: {
type: 'd3-force',
animation: false,
manyBody: {},
x: {},
y: {},
},
behaviors: ['drag-canvas', 'zoom-canvas', 'drag-element'],
},
{ width: 500, height: 500 },
),
);

下面分析一下这段代码:

  1. 首先我们创建一个 div 元素作为图的容器:
<div id="container" style="width: 500px; height: 500px"></div>
  1. 然后引入 G6 的 JS 文件:
<script src="https://unpkg.com/@antv/g6@5/dist/g6.min.js"></script>
  1. 使用 fetch 方法获取图的数据:
fetch('https://assets.antv.antgroup.com/g6/graph.json').then((res) => res.json());
  1. 最后创建一个图实例,传入配置对象,并调用 render 方法渲染图:
const { Graph } = G6;
const graph = new Graph({
container: 'container',
autoFit: 'view',
data,
node: {
style: {
size: 10,
},
palette: {
field: 'group',
color: 'tableau',
},
},
layout: {
type: 'd3-force',
manyBody: {},
x: {},
y: {},
},
behaviors: ['drag-canvas', 'zoom-canvas', 'drag-element'],
});
graph.render();

如果你使用 React、Vue、Angular 等框架,可以查看:

上一篇
简介
下一篇
安装