antv/G6使用记录,实现简单vue组件的demo

2023-12-12 21:20

本文主要是介绍antv/G6使用记录,实现简单vue组件的demo,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

 antv/G6是蚂蚁金服数据可视化团队出品的一个功能完备的图可视化引擎。

 介于业务需要,最近在学习G6,特此记录下~~

简单展示:
简单的demo

功能点:

  • 连接关系图表
    • 鼠标控制缩放
    • 节点拖动事件
    • 画布拖动事件
    • 边的状态切换
    • 边动画

特性:

状态:G6中提供了状态管理,指的是节点或边的状态,包括交互状态和业务状态。
动画:动画是可视化中非常重要的内容,本例中涉及到边的动画效果
字体图标:本例中使用iconfont,具体实现参照G6官方文档,比较的详细
布局:G6提供了一些布局的方法,只需要在实例化G6时进行配置就好,但是本例没有使用布局,而是指定了节点额度坐标

 话不多说,上代码,使用vue写的组件,代码写的比较low~~~
完整代码

<template><div class="main-content-box"><div id="container"></div></div>
</template><script>
import G6 from '@antv/g6';
export default {name: 'g6demo',data () {return {data: {randomColor: ''}}},mounted () {setTimeout(() => {this.getInit()}, 100)},methods: {getInit () {const nodes = [];const edges = [];// 中心节点const centerNode = {id: 'center',x: 500,y: 300,// type: 'center-node',size: 86,label: '网络运营商',text: '\ue827',  //对应iconfont.css 里面的content,注意加ustyle: {fill: 'red'},labelCfg: {style: {fill: "blue"}},backgroundConfig: null  // 自定义项,用于判读是否需要圆背景};nodes.push(centerNode);// 左侧一级节点const leftMoudelNode = {id: 'node1',x: 350,y: 300,label: '光纤',text: '\ue78a',style: {fill: 'Coral'},backgroundConfig: null,size: 45,}nodes.push(leftMoudelNode);edges.push({ source: 'node1', target: 'center', type: 'can-running' });let leftGzzNode = {}// 左侧添加 4 个节点for (let i = 0; i < 4; i++) {const id = 'left' + i;nodes.push({id,x: 150,y: (i + 1) * 100 + 50,type: 'leaf-node',text: '\ue60e',label: (i + 1) + '号楼',style: {fill: '#5B8FF9'},backgroundConfig: null,size: 45,});edges.push({ source: id, target: 'node1', type: 'can-running' });}for (let i = 0; i < 4; i++) {const id = 'leftNodeGzz' + i;nodes.push({id,x: 50,y: (i + 1) * 100 + 50,type: 'leaf-node',text: '\ue627',label: '黑网吧',style: {fill: '#c6E5F5'},backgroundConfig: null,size: 45,});edges.push({ source: id, target: 'left' + i, type: 'can-running' });}// 右侧添加 5 个节点for (let i = 0; i < 5; i++) {const id = 'right' + i;const edgesId = 'edgeRight' + inodes.push({id,x: 750,y: i * 100 + 50,type: 'leaf-node',text: '\ue60e',label: (i + 5) + '号楼',relation: '以太网',style: {fill: '#5B8FF9'},backgroundConfig: null,size: 45,linebackgroundConfig: {fill: 'Coral',},});edges.push({id: edgesId,source: 'center',target: id,type: 'can-running',label: id === 'right0' ? '高速宽带' : '以太网',style: {stroke: 'red'},labelCfg: {style: {fill: id === 'right0' ? 'Coral' : 'cyan'}}});}for (let i = 0; i < 5; i++) {const id = 'rightNodeGzz' + i;nodes.push({id,x: 950,y: (i + 1) * 100,type: 'leaf-node',text: '\ue64c',label: '家庭用户',style: {fill: '#c6E5F5'},backgroundConfig: null,size: 45,});edges.push({ source: 'right' + i, target: id, type: 'can-running' });}//G6.registerNode('leaf-node',{draw (cfg, group) {const { backgroundConfig: backgroundStyle, style, labelCfg: labelStyle } = cfg;if (backgroundStyle) {group.addShape('circle', {attrs: {x: 0,y: 0,r: cfg.size,...backgroundStyle,},name: 'circle-shape',});}group.addShape('circle', {attrs: {x: -120,y: 0,r: 30,...backgroundStyle,},name: 'circle-shape',});const keyShape = group.addShape('text', {attrs: {x: 0,y: 0,fontFamily: 'iconfont', // 对应css里面的font-family: "iconfont";textAlign: 'center',textBaseline: 'middle',text: cfg.text,fontSize: cfg.size,...style,},name: 'text-shape1',});const labelY = backgroundStyle ? cfg.size * 2 : cfg.size;group.addShape('text', {attrs: {x: 0,y: labelY,textAlign: 'center',text: cfg.label,...labelStyle.style,},// must be assigned in G6 3.3 and later versions. it can be any value you wantname: 'text-shape1',});return keyShape;},getAnchorPoints () {return [[0, 0.5],[1, 0.5],];},},'circle',);//使用iconfontG6.registerNode('iconfont', {draw (cfg, group) {const { backgroundConfig: backgroundStyle, style, labelCfg: labelStyle } = cfg;if (backgroundStyle) {group.addShape('circle', {attrs: {x: 0,y: 0,r: cfg.size,...backgroundStyle,},// must be assigned in G6 3.3 and later versions. it can be any value you wantname: 'circle-shape',});}group.addShape('circle', {attrs: {x: -12,y: 0,r: 30,...backgroundStyle,},name: 'circle-shape',});const keyShape = group.addShape('text', {attrs: {x: 0,y: 0,fontFamily: 'iconfont', // 对应css里面的font-family: "iconfont";textAlign: 'center',textBaseline: 'middle',text: cfg.text,fontSize: cfg.size,...style,},// must be assigned in G6 3.3 and later versions. it can be any value you wantname: 'text-shape1',});const labelY = backgroundStyle ? cfg.size * 2 : cfg.size;group.addShape('text', {attrs: {x: 0,y: labelY,textAlign: 'center',text: cfg.label,...labelStyle.style,},// must be assigned in G6 3.3 and later versions. it can be any value you wantname: 'text-shape1',});return keyShape;},});// lineDash 的差值,可以在后面提供 util 方法自动计算const dashArray = [[0, 1],[0, 2],[1, 2],[0, 1, 1, 2],[0, 2, 1, 2],[1, 2, 1, 2],[2, 2, 1, 2],[3, 2, 1, 2],[4, 2, 1, 2],];const lineDash = [4, 2, 1, 2];const interval = 9;G6.registerEdge('can-running',{setState (name, value, item) {const shape = item.get('keyShape');if (name === 'running') {if (value) {const length = shape.getTotalLength(); // 后续 G 增加 totalLength 的接口let totalArray = [];for (let i = 0; i < length; i += interval) {totalArray = totalArray.concat(lineDash);}let index = 0;shape.animate(() => {const cfg = {lineDash: dashArray[index].concat(totalArray),};index = (index + 1) % interval;return cfg;},{repeat: true,duration: 3000,},);} else {shape.stopAnimate();shape.attr('lineDash', null);}}},},'cubic-horizontal',);let COLOR = '#40a9ff'const width = document.getElementById('container').scrollWidth * 0.7;const height = document.getElementById('container').scrollHeight || 600;const graph = new G6.Graph({container: 'container',width,height,renderer: 'svg',modes: {default: ['drag-canvas','drag-node','zoom-canvas']},defaultNode: {backgroundConfig: {backgroundType: 'circle',fill: COLOR,stroke: 'LightSkyBlue',},type: 'iconfont',size: 12,style: {fill: '#DEE9FF',stroke: '#5B8FF9',},labelCfg: {style: {fill: COLOR,fontSize: 12,},},},defaultEdge: {style: {stroke: '#b5b5b5',},},});graph.data({ nodes, edges });graph.render();graph.fitView();// 响应 hover 状态graph.on('node:mouseenter', ev => {const node = ev.item;const edges = node.getEdges();edges.forEach(edge => graph.setItemState(edge, 'running', true));});graph.on('node:mouseleave', ev => {const node = ev.item;const edges = node.getEdges();edges.forEach(edge => graph.setItemState(edge, 'running', false));});let model = {type: 'can-running',text: '\ue60e',style: {stroke: 'yellow'},labelCfg: {style: {fill: 'cyan'}}};//增加edge的标识id字段后const item = graph.findById('edgeRight0');const item2 = graph.findById('edgeRight1');const item3 = graph.findById('edgeRight2');const item4 = graph.findById('edgeRight3');const item5 = graph.findById('edgeRight4');setInterval(() => {model.labelCfg.style.fill = this.getRandomColor()model.style.stroke = this.getRandomColor()graph.updateItem(item, model);graph.updateItem(item2, model);graph.updateItem(item3, model);graph.updateItem(item4, model);graph.updateItem(item5, model);}, 1000);},getRandomColor () {var rand = Math.floor(Math.random() * 0xFFFFFF).toString(16);if (rand.length == 6) {return '#' + rand;} else {return this.getRandomColor();}}}
}</script><style scoped>
</style>

  以上就是示例的完整代码,G6的版本为3.5.0,话说G6的团队真的是很勤奋,版本更新的也蛮快的,官方文档也是越来越完善。希望越做越好吧。

Tips:
   如果本文章对您有帮助,欢迎评论告知!

这篇关于antv/G6使用记录,实现简单vue组件的demo的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/485970

相关文章

Python将博客内容html导出为Markdown格式

《Python将博客内容html导出为Markdown格式》Python将博客内容html导出为Markdown格式,通过博客url地址抓取文章,分析并提取出文章标题和内容,将内容构建成html,再转... 目录一、为什么要搞?二、准备如何搞?三、说搞咱就搞!抓取文章提取内容构建html转存markdown

Python获取中国节假日数据记录入JSON文件

《Python获取中国节假日数据记录入JSON文件》项目系统内置的日历应用为了提升用户体验,特别设置了在调休日期显示“休”的UI图标功能,那么问题是这些调休数据从哪里来呢?我尝试一种更为智能的方法:P... 目录节假日数据获取存入jsON文件节假日数据读取封装完整代码项目系统内置的日历应用为了提升用户体验,

在React中引入Tailwind CSS的完整指南

《在React中引入TailwindCSS的完整指南》在现代前端开发中,使用UI库可以显著提高开发效率,TailwindCSS是一个功能类优先的CSS框架,本文将详细介绍如何在Reac... 目录前言一、Tailwind css 简介二、创建 React 项目使用 Create React App 创建项目

vue使用docxtemplater导出word

《vue使用docxtemplater导出word》docxtemplater是一种邮件合并工具,以编程方式使用并处理条件、循环,并且可以扩展以插入任何内容,下面我们来看看如何使用docxtempl... 目录docxtemplatervue使用docxtemplater导出word安装常用语法 封装导出方

SpringBoot3实现Gzip压缩优化的技术指南

《SpringBoot3实现Gzip压缩优化的技术指南》随着Web应用的用户量和数据量增加,网络带宽和页面加载速度逐渐成为瓶颈,为了减少数据传输量,提高用户体验,我们可以使用Gzip压缩HTTP响应,... 目录1、简述2、配置2.1 添加依赖2.2 配置 Gzip 压缩3、服务端应用4、前端应用4.1 N

Linux换行符的使用方法详解

《Linux换行符的使用方法详解》本文介绍了Linux中常用的换行符LF及其在文件中的表示,展示了如何使用sed命令替换换行符,并列举了与换行符处理相关的Linux命令,通过代码讲解的非常详细,需要的... 目录简介检测文件中的换行符使用 cat -A 查看换行符使用 od -c 检查字符换行符格式转换将

SpringBoot实现数据库读写分离的3种方法小结

《SpringBoot实现数据库读写分离的3种方法小结》为了提高系统的读写性能和可用性,读写分离是一种经典的数据库架构模式,在SpringBoot应用中,有多种方式可以实现数据库读写分离,本文将介绍三... 目录一、数据库读写分离概述二、方案一:基于AbstractRoutingDataSource实现动态

Python FastAPI+Celery+RabbitMQ实现分布式图片水印处理系统

《PythonFastAPI+Celery+RabbitMQ实现分布式图片水印处理系统》这篇文章主要为大家详细介绍了PythonFastAPI如何结合Celery以及RabbitMQ实现简单的分布式... 实现思路FastAPI 服务器Celery 任务队列RabbitMQ 作为消息代理定时任务处理完整

使用Jackson进行JSON生成与解析的新手指南

《使用Jackson进行JSON生成与解析的新手指南》这篇文章主要为大家详细介绍了如何使用Jackson进行JSON生成与解析处理,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录1. 核心依赖2. 基础用法2.1 对象转 jsON(序列化)2.2 JSON 转对象(反序列化)3.

Java枚举类实现Key-Value映射的多种实现方式

《Java枚举类实现Key-Value映射的多种实现方式》在Java开发中,枚举(Enum)是一种特殊的类,本文将详细介绍Java枚举类实现key-value映射的多种方式,有需要的小伙伴可以根据需要... 目录前言一、基础实现方式1.1 为枚举添加属性和构造方法二、http://www.cppcns.co