赞
踩
相信很多朋友会有关系图谱的需求,但是 echarts 又满足不了各位的需求,怎么办呢? 今天他来了!!
relation-graph 相比较 echarts 和 D3 , 在关系图谱功能方面它能够给使用者带来更好的体验!
下面简述一下使用方法:
npm install --save relation-graph
1、import RelationGraph from 'relation-graph'
2、 也可以在 main.js 文件中使用 Vue.use(RelationGraph)
这样可以全局调用,但需要给设置独立标识防止报错!
<template>
<div>
<div style="height:calc(100vh - 60px);">
<RelationGraph ref="graphRef" :options="graphOptions" />
</div>
</div>
</template>
graphOptions: {
allowSwitchLineShape: true,
allowSwitchJunctionPoint: true,
defaultJunctionPoint: 'border'
}
// 这里的 graphOptions 类似于 echarts 中的 options 但只是对样式的修改,传值则用到 .setJsonData(data)。
配上链接:
Graph 图谱
Layout 布局
Graph instance API
> 他的这个数据格式还是比较特殊的
rootId: ‘a’ : 这个是必填的用来标注中心点,默认起始点。
nodes:[ ] : 这个代表的是你展示的每个 node 节(可以添加一些要展示的信息)
lines:[ ] : 各节点间的联系(可以设置线条样式)
const jsonData = {
rootId: 'a',
nodes: [
{ id: 'a', text: 'A', borderColor: 'yellow' },
{ id: 'b', text: 'B', color: '#43a2f1', fontColor: 'yellow' },
{ id: 'c', text: 'C', nodeShape: 1, width: 80, height: 60 },
{ id: 'e', text: 'E', nodeShape: 0, width: 150, height: 150 }
],
lines: [
{ from: 'a', to: 'b', text: '关系1', color: '#43a2f1' },
{ from: 'a', to: 'c', text: '关系2' },
{ from: 'a', to: 'e', text: '关系3' },
{ from: 'b', to: 'e', color: '#67C23A' }
]
}
上面这些是需要简单了解的,对以后简单调整样式会有帮助!
<template> <div> <div style="height:calc(100vh - 60px);"> <RelationGraph ref="graphRef" :options="graphOptions" :on-node-click="onNodeClick" :on-line-click="onLineClick" /> </div> </div> </template> <script> import RelationGraph from 'relation-graph' export default { name: 'Demo', components: { RelationGraph }, data() { return { graphOptions: { allowSwitchLineShape: true, allowSwitchJunctionPoint: true, defaultJunctionPoint: 'border' } } }, mounted() { this.showGraph() }, methods: { showGraph() { const jsonData = { rootId: 'a', nodes: [ { id: 'a', text: 'A', borderColor: 'yellow' }, { id: 'b', text: 'B', color: '#43a2f1', fontColor: 'yellow' }, { id: 'c', text: 'C', nodeShape: 1, width: 80, height: 60 }, { id: 'e', text: 'E', nodeShape: 0, width: 150, height: 150 } ], lines: [ { from: 'a', to: 'b', text: '关系1', color: '#43a2f1' }, { from: 'a', to: 'c', text: '关系2' }, { from: 'a', to: 'e', text: '关系3' }, { from: 'b', to: 'e', color: '#67C23A' } ] } this.$refs.graphRef.setJsonData(jsonData, (graphInstance) => {}) }, onNodeClick(nodeObject, $event) { console.log('onNodeClick:', nodeObject) }, onLineClick(lineObject, $event) { console.log('onLineClick:', lineObject) } } } </script>
1、节点居中 相关内容效果高亮
2、新增下级人员
3、节点详情展示等
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。