赞
踩
需求:使用状态树,以及节点换作图片
实际操作
html部分:
js部分:
drawChart() { // 此处将方法封装了函数(需调用)
var pieId = document.getElementById("tree");
if (!pieId) {
return false;
}
let myChart = this.$echarts.init(pieId);
let option = {};
// 使用刚指定的配置项和数据显示图表。
myChart.setOption(
(option = {
tooltip: {
trigger: "item",
triggerOn: "mousemove",
},
series: [
{
type: "tree",
data: [treeJson], // 此处为重点:外引的json数据
nodePadding: 20,
top: "1%",
left: "10%",
bottom: "1%",
right: "10%",
symbol: 'image', // 此处亦为重点---> 节点换成图片即为此
symbolSize: [80, 20],
roam: true,
itemStyle: {
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。