G6
G2
G6
F2
L7
墨者学院
关于 G6
图表示例
API 文档
使用教程
返回旧版
树图
紧凑树
系统树
生态树
脑图树
函数生成树
Newick
流图
ATM 投资关系图
表格桑基图
工作流
网图
小米关系图谱
浙江省各城市大学分布
粒子传输效果
系统增长
2017 Link Data
编辑器
简单流程图
模型流程图
脑图
网络图建模
2017 Link Data
源码
复制成功
复制失败
全屏
复制
运行
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>2017 Link Data</title> <style>::-webkit-scrollbar{display:none;}html,body{overflow:hidden;margin:0;}</style> </head> <body> <div id="mountNode"></div> <script>/*Fixing iframe window.innerHeight 0 issue in Safari*/document.body.clientHeight;</script> <script src="https://gw.alipayobjects.com/os/antv/pkg/_antv.g6-3.1.1/build/g6.js"></script> <script src="https://gw.alipayobjects.com/os/antv/pkg/_antv.g6-2.2.0/build/g6.js"></script> <script src="https://gw.alipayobjects.com/os/antv/pkg/_antv.g6-2.2.6/build/plugins.js"></script> <script src="https://gw.alipayobjects.com/os/antv/assets/lib/jquery-3.2.1.min.js"></script> <script> $("#mountNode").prepend('<img class="legend" width="150" src="https://gw.alipayobjects.com/zos/rmsportal/AuLKMNbRvKidugdUCaXz.png" style="position: absolute;right: 20px;"/>'); $.getJSON('https://gw.alipayobjects.com/os/antvdemo/assets/data/2017-link-data.json', function(data) { var _G = G6, Util = _G.Util; var graph = new G6.Graph({ container: 'mountNode', height: window.innerHeight, // 画布高 plugins: [new G6.Plugins['tool.highlightSubgraph'](), new G6.Plugins['tool.fisheye']()], fitView: 'autoZoom' }); graph.node({ style: { stroke: '#333' } }); graph.read(data); // 画布向左偏移 1/6 的画布kuandu var width = graph.getWidth(); graph.translate(-width / 7, 0); // 隐藏所有边 graph.getEdges().forEach(function(edge) { graph.hide(edge); }); // 鼠标悬浮高亮节点,并显示一度关系 var showEdgesCache = void 0; graph.on('node:mouseenter', function(_ref) { var item = _ref.item; var _Util$extract = Util.extract('bi', [item]), reNodes = _Util$extract.reNodes, reEdges = _Util$extract.reEdges; graph.highlightSubgraph(reNodes.concat(reEdges)); reEdges.forEach(function(edge) { graph.show(edge); }); showEdgesCache = reEdges; }); graph.on('node:mouseleave', function() { graph.unhighlightGraph(); showEdgesCache.forEach(function(edge) { graph.hide(edge); }); }); }); </script> </body> </html>
图表简介
详见:http://linkdata.org/