I was wondering if its possible to create an organization chart with this project?Something similar to the following chart:
If the answer is yes, where can I see an example or a demo?Thank you
qltillow1#
I think you can achieve it by customizing label and rich .http://echarts.baidu.com/tutorial.html#%E5%AF%8C%E6%96%87%E6%9C%AC%E6%A0%87%E7%AD%BE
label
rich
hyrbngr72#
Hi,
can you possibly do a little demo on this subject?
thanks in advance
4uqofj5v3#
Tree diagram straight-line layout.
pes8fvy94#
hi,still can get it, how the above Organization tree chart can ve achievedplease an example is needed.
mwyxok5s5#
+1
3df52oht6#
aiazj4mn7#
7rtdyuoh8#
hi,can you please share how the above Organization tree chart was done!.
pw136qt29#
Asuming you have a JSON fie like this:
{ name: "Stefan Zweig", value: "CEO", children: [ { name: "Leo Tolstoy", value: "CFO", children: [ { name: "Fyodor Dostoyevski", value: "Manager", }, { name: "Edward III", value: "Manager", }, { name: "Anna Karanina", value: "Manager", }, ], }, { name: "Barrack Obama", value: "CMO", children: [ { name: "Henry Kissinger", value: "Social Media", }, { name: "Abraham Lincoln", value: "Research", }, ], }, ], };
You can set as value this JSON to series[0].label in the chart configuration options:
{ width: 200, height: 100, backgroundColor: "white", borderWidth: 80, borderRadius: 3, shadowColor: "#595953", shadowBlur: 10, shadowOffsetX: 5, shadowOffsetY: 5, formatter: [ ["{headLine|}"], ["{avatar|}", "{username|{b}}"].join(""), ["{userTitle|{c}}"], ].join("\n"), rich: { headLine: { width: 200, height: 5, backgroundColor: "#" + Math.floor(Math.random() * 16777215).toString(16), position: "absolute", align: "top", }, avatar: { fontSize: 20, padding: [20, 0, 0, 20], width: 25, height: 25, borderRadius: 100, borderWidth: 2, backgroundColor: { image: "https://www.flaticon.com/svg/vstatic/svg/747/747376.svg?token=exp=1611934475~hmac=58da34008484e2f05092d1c336503f0a", }, }, username: { align: "left", padding: [0, 0, 0, 15], verticalAlign: "top", fontSize: 18, width: 50, height: 50, }, userTitle: { align: "left", padding: [-30, 0, 0, 75], verticalAlign: "top", color: "#808080", fonntWeight: 10, fontSize: 15, width: 50, height: 50, }, }, };
Example:
options = { tooltip: { trigger: "item", triggerOn: "mousemove", }, series: [ { type: "tree", data: [data], label: { width: 200, height: 100, backgroundColor: "white", borderWidth: 80, borderRadius: 3, shadowColor: "#595953", shadowBlur: 10, shadowOffsetX: 5, shadowOffsetY: 5, formatter: [ ["{headLine|}"], ["{avatar|}", "{username|{b}}"].join(""), ["{userTitle|{c}}"], ].join("\n"), rich: { headLine: { width: 200, height: 5, backgroundColor: "#" + Math.floor(Math.random() * 16777215).toString(16), position: "absolute", align: "top", }, avatar: { fontSize: 20, padding: [20, 0, 0, 20], width: 25, height: 25, borderRadius: 100, borderWidth: 2, backgroundColor: { image: "https://www.flaticon.com/svg/vstatic/svg/747/747376.svg?token=exp=1611934475~hmac=58da34008484e2f05092d1c336503f0a", }, }, username: { align: "left", padding: [0, 0, 0, 15], verticalAlign: "top", fontSize: 18, width: 50, height: 50, }, userTitle: { align: "left", padding: [-30, 0, 0, 75], verticalAlign: "top", color: "#808080", fonntWeight: 10, fontSize: 15, width: 50, height: 50, }, }, }, }, ], };
9条答案
按热度按时间qltillow1#
I think you can achieve it by customizing
label
andrich
.http://echarts.baidu.com/tutorial.html#%E5%AF%8C%E6%96%87%E6%9C%AC%E6%A0%87%E7%AD%BE
hyrbngr72#
Hi,
can you possibly do a little demo on this subject?
thanks in advance
4uqofj5v3#
Tree diagram straight-line layout.
pes8fvy94#
hi,
still can get it, how the above Organization tree chart can ve achieved
please an example is needed.
thanks in advance
mwyxok5s5#
+1
3df52oht6#
+1
aiazj4mn7#
+1
7rtdyuoh8#
hi,
can you please share how the above Organization tree chart was done!.
thanks in advance
pw136qt29#
Asuming you have a JSON fie like this:
You can set as value this JSON to series[0].label in the chart configuration options:
Example: