Echarts 关系图谱示例「建议收藏」

Echarts 关系图谱示例「建议收藏」<!DOCTYPEhtml><html><head><metaname=”viewport”content=”width=device-width”/><title>ECharts关系图谱</title><scriptsrc=”jquery-1.10.2.min.js”></script><scriptsrc=”echarts.min.js”>.

大家好,又见面了,我是你们的朋友全栈君。

在这里插入图片描述

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width"/>
<title>ECharts 关系图谱</title>
<script src="jquery-1.10.2.min.js"></script>
<script src="echarts.min.js"></script>
<style type="text/css"> html, body, #main { 
 height: 100%; width: 100%; margin: 0; padding: 0 } </style>
</head>
<body>
<div id="main" style=""></div>
<script type="text/javascript"> var myChart = echarts.init(document.getElementById('main')); option = { 
 title: { 
text: '关系图谱'}, tooltip: { 
 formatter: function (x) { 
 return x.data.des; } }, series: [ { 
 type: 'graph', layout: 'force', symbolSize: 80, roam: true, edgeSymbol: ['circle', 'arrow'], edgeSymbolSize: [4, 10], edgeLabel: { 
 normal: { 
 textStyle: { 
 fontSize: 20 } } }, force: { 
 repulsion: 2500, edgeLength: [10, 50] }, draggable: true, itemStyle: { 
 normal: { 
 color: '#4b565b' } }, lineStyle: { 
 normal: { 
 width: 2, color: '#4b565b' } }, edgeLabel: { 
 normal: { 
 show: true, formatter: function (x) { 
 return x.data.name; } } }, label: { 
 normal: { 
 show: true, textStyle: { 
} } }, data: [ { 
 name: '张三', des: '退休', symbolSize: 100, itemStyle: { 
 normal: { 
 color: 'red' } } }, { 
 name: '李四', des: '自己创业', itemStyle: { 
 normal: { 
 color: 'red' } } }, { 
 name: '王五', des: '测试人员', symbolSize: 100 }, { 
 name: '天天', des: '程序员', itemStyle: { 
 normal: { 
 color: 'red' } } } ], links: [ { 
 source: '张三', target: '李四', name: '姐妹', des: '张三与户主【李四】关系为姐妹' }, { 
 source: '王五', target: '李四', name: '朋友' }, { 
 source: '天天', target: '王五', name: "同事" }, { 
 source: '李四', target: '天天', name: "父子" } ] } ] }; myChart.setOption(option); </script>
</body>
</html>
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/153298.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)
blank

相关推荐

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号