Toggle navigation
公司层级
By
奈落一一荒
2017-08-25 02:24:24
脚本
16
21
作品使用的第三方脚本
数据管理
上传数据
支持小于 5M 任意格式(csv, xlsx, json, xml, ...)的数据文件
上传后可以通过生成的文件链接异步获取托管的数据。
历史数据
0 条
无历史数据
代码修改记录
信息提示
保存作品
对当前截图不满意?你还可以
上传本地截图
重新截图
作品名称
作品描述
标签
geo
grid
legend
markLine
markPoint
bar
effectScatter
line
lines
map
timeline
title
toolbox
tooltip
visualMap
作品默认版本
最新
16
15
14
13
12
11
10
9
8
7
6
5
4
3
2
1
20:11:45
图表已生成
整理代码
刷新
代码
option = { title: { text: '公司层级', link: 'www.baidu.com' }, tooltip: {}, animationDurationUpdate: 1500, animationEasingUpdate: 'quinticInOut', label: { normal: { show: true, textStyle: { fontSize: 18 }, } }, legend: { x: "center", data: ["总经理", "秘书处", '传达者', '基层'] }, series: [ { type: 'graph', layout: 'force', symbolSize: 60, focusNodeAdjacency: true, roam: true, categories: [{ name: '总经理' }, { name: '秘书处' }, { name: '传达者' }, { name: '基层' }], label: { normal: { show: true, textStyle: { fontSize: 18 }, } }, force: { repulsion: 2000 }, edgeLabel: { normal: { show: true, textStyle: { fontSize: 18 }, formatter: "{c}" } }, data: [{ name: '总经理', category: 0, }, { name: '秘书长', category: 1, draggable: true, }, { name: '副秘书长', category: 1, draggable: true, }, { name: '传达丙', category: 2, draggable: true, }, { name: '传达甲', category: 2, draggable: true, }, { name: '传达乙', category: 2, draggable: true, }, { name: '基层乙', category: 3, draggable: true, }, { name: '基层丙', category: 3, draggable: true, }, { name: '传达丁', category: 2, draggable: true, }, { name: '基层甲', category: 3, draggable: true, }, { name: '基层丁', category: 3, draggable: true, }, ], links: [{ source: '总经理', target: '秘书长', value: '上级', lineStyle: { normal: { color: 'red', } } }, { source: '总经理', target: '副秘书长', value: '上级', lineStyle: { normal: { color: 'red', } } }, { source: '秘书长', target: '传达丙', value: '上级' }, { source: '副秘书长', target: '传达丁', value: '上级' }, { source: '秘书长', target: '夏桀', value: '上级' }, { source: '副秘书长', target: '传达甲', value: '上级' }, { source: '副秘书长', target: '传达乙', value: '上级' }, { source: '基层甲', target: '传达丁', value: '上级', lineStyle: { normal: { color: 'red', type: 'dotted' } } }, { source: '基层丁', target: '传达丁', value: '上级', lineStyle: { normal: { color: 'red', type: 'dotted' } } }, { source: '基层丁', target: '传达丙', value: '上级', lineStyle: { normal: { color: 'red', type: 'dotted' } } }, { source: '基层乙', target: '传达丙', value: '上级', lineStyle: { normal: { color: 'red', type: 'dotted' } } }, { source: '基层丙', target: '传达丙', value: '上级', lineStyle: { normal: { color: 'red', type: 'dotted' } } }, ], lineStyle: { normal: { opacity: 0.7, width: 1, curveness: 0.1 } } } ] };