ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

echarts关系图

2022-01-25 11:05:13  阅读:141  来源: 互联网

标签:关系 target color value source true echarts name


 

 

option = {
backgroundColor: '#1a4377',
grid: {
left: '10%',
top: 60,
right: '10%',
bottom: 60,
},
toolbox: {
feature: {
saveAsImage: {}
}
},
series: [{
type: 'graph',
layout: 'force',
force: {
repulsion: 1000,
edgeLength: 70,
layoutAnimation: true,
},
symbolSize: 70,
nodeScaleRatio: 1, //图标大小是否随鼠标滚动而变
roam: true, //缩放
draggable: true, //节点是否可以拖拽
focusNodeAdjacency: false, //是否在鼠标移到节点上的时候突出显示节点以及节点的边和邻接节点
edgeSymbol: ['circle', 'arrow'], //线2头标记
label: {
normal: {
show: true,
position: 'inside',
color: 'gold'
}
},
edgeLabel: {
normal: {
show: true,
textStyle: {
fontSize: 12,
color: '#fff'
},
formatter: "{c}"
}
},
categories: [{
name: '亲人',
}, {
name: '租户',
symbol: 'rect'
}],
itemStyle: {
normal: {
borderColor: '#04f2a7',
borderWidth: 2,
shadowBlur: 10,
shadowColor: '#04f2a7',
color: '#001c43',
}
},
lineStyle: {
normal: {
opacity: 0.9,
width: 2,
curveness: 0,
color: {
type: 'linear',
x: 0,
y: 0,
x2: 0,
y2: 1,
colorStops: [{
offset: 0,
color: '#e0f55a' // 0% 处的颜色
}, {
offset: 1,
color: '#639564' // 100% 处的颜色
}],
globalCoord: false // 缺省为 false
}
}
},
symbolKeepAspect: false,
data: [{
name: '李富贵',
},
{
name: '王桂花',
},
{
name: '李思思',
},
{
name: '自住房屋',

},
{
name: '车子',

},
{
name: '租房',

},
{
name: '黄涛',
},
{
name: '于海',

},
{
name: '张柏',
},
{
name: '付梦杰',
}
],
links: [{
source: 0,
target: 1,
value: '夫妻'
},
{
source: 0,
target: 2,
value: '父女'
},
{
source: 0,
target: 3,
value: '自住'
},
{
source: 0,
target: 4,
value: '车主'
},
{
source: 0,
target: 5,
value: '租户'
},
{
source: 5,
target: 6,
value: '租赁'

},
{
source: 5,
target: 7,
value: '租赁'
},
{
source: 5,
target: 8,
value: '租赁'
},
{
source: 5,
target: 9,
value: '租赁'
}
],
}]
}

标签:关系,target,color,value,source,true,echarts,name
来源: https://www.cnblogs.com/MrLie/p/15842095.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有