type: 'graph',echarts 居中式的 企业关系图谱圆形类似企查查的详细代码
时间: 2024-01-01 19:05:57 浏览: 118
以下是一个居中式的企业关系图谱圆形类似企查查的详细代码示例,使用了 echarts:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>企业关系图谱</title>
<script src="https://cdn.bootcdn.net/ajax/libs/echarts/5.1.1/echarts.min.js"></script>
</head>
<body>
<div id="main" style="width: 100%; height: 800px;"></div>
<script type="text/javascript">
// 基于准备好的dom,初始化echarts实例
var myChart = echarts.init(document.getElementById('main'));
// 指定图表的配置项和数据
var option = {
title: {
text: '企业关系图谱',
subtext: '数据来自企查查',
top: 'top',
left: 'center'
},
tooltip: {},
animationDurationUpdate: 1500,
animationEasingUpdate: 'quinticInOut',
series: [
{
type: 'graph',
layout: 'circular',
symbolSize: 100,
roam: true,
label: {
show: true
},
edgeSymbol: ['circle', 'arrow'],
edgeSymbolSize: [4, 10],
edgeLabel: {
fontSize: 20
},
data: [
{
name: '公司A',
x: 500,
y: 350,
itemStyle: {
color: '#F58158'
}
},
{
name: '公司B',
itemStyle: {
color: '#7B91FF'
}
},
{
name: '公司C',
itemStyle: {
color: '#F3A43B'
}
},
{
name: '公司D',
itemStyle: {
color: '#60C0DD'
}
}
],
links: [
{
source: '公司A',
target: '公司B',
label: {
show: true,
formatter: '子公司',
fontSize: 20
},
lineStyle: {
width: 2,
color: '#7B91FF',
curveness: 0.2
}
},
{
source: '公司A',
target: '公司C',
label: {
show: true,
formatter: '子公司',
fontSize: 20
},
lineStyle: {
width: 2,
color: '#F3A43B',
curveness: 0.2
}
},
{
source: '公司A',
target: '公司D',
label: {
show: true,
formatter: '子公司',
fontSize: 20
},
lineStyle: {
width: 2,
color: '#60C0DD',
curveness: 0.2
}
}
]
}
]
};
// 使用刚指定的配置项和数据显示图表。
myChart.setOption(option);
</script>
</body>
</html>
```
你可以根据自己的需求修改数据和样式。
阅读全文