【ECharts】关系图(graph)添加波点涟漪效果(option配置)

option = {
     xAxis : [{
           type : 'value',
           splitLine: {
             show: false
           },
           axisTick: {
             show: false
           },
           axisLabel: {
             show: false,
             interval: 0,
             textStyle: {
               color: 'white',
               fontSize: 14,
             },
             rotate: 45
           },
           axisLine: {
             show: false  // 显示与关闭坐标轴
           }
         }, ],
         yAxis : [{
           type : 'value',
           splitLine: {
             show: false
           },
           axisTick: {
             show: false
           },
           axisLabel: {
             show: false,
             textStyle: {
               color: 'white',
               fontSize: 14
             }
           },
           axisLine: {
             show: false // 显示与关闭坐标轴
           },
         }],
    
    animationDurationUpdate: 1500,
    animationEasingUpdate: 'quinticInOut',
    series : [
        {
            type: 'graph',
            layout: 'none',
            symbolSize: 50,
            roam: true,
            label: {
                normal: {
                    show: true
                }
            },
            edgeSymbol: ['circle', 'arrow'],
            edgeSymbolSize: [4, 10],
            edgeLabel: {
                normal: {
                    textStyle: {
                        fontSize: 20
                    }
                }
            },
            data: [{
                name: '节点1',
                x: 300,
                y: 300
            }, {
                name: '节点2',
                x: 800,
                y: 300
            }, {
                name: '节点3',
                x: 550,
                y: 100
            }, {
                name: '节点4',
                x: 550,
                y: 500
            }],
            // links: [],
            links: [{
                source: 0,
                target: 1,
                symbolSize: [5, 20],
                label: {
                    normal: {
                        show: true
                    }
                },
                lineStyle: {
                    normal: {
                        width: 5,
                        curveness: 0.2
                    }
                }
            }, {
                source: '节点2',
                target: '节点1',
                label: {
                    normal: {
                        show: true
                    }
                },
                lineStyle: {
                    normal: { curveness: 0.2 }
                }
            }, {
                source: '节点1',
                target: '节点3'
            }, {
                source: '节点2',
                target: '节点3'
            }, {
                source: '节点2',
                target: '节点4'
            }, {
                source: '节点1',
                target: '节点4'
            }],
            lineStyle: {
                normal: {
                    opacity: 0.9,
                    width: 2,
                    curveness: 0
                }
            }
        },
          {
          
            type: 'effectScatter',
            data: [
                { value:[48 , 150],  //  这个value对应的是这个涟漪对应的位置[x,y]
                label: { formatter: function(p){ return '节点1'; } }, symbolSize: 50  }, 
                { value:[752 , 150 , '111'],  //  【x,y,  值数据】
                label: { formatter: function(p){ return '节点2'; } }, symbolSize: 50  },
                { value:[400 , 298], 
                label: { formatter: function(p){ return '节点3'; } }, symbolSize: 50  },
                { value:[400 , 2], 
                label: { formatter: function(p){ return '节点4'; } }, symbolSize: 50  },
                ],
            symbolSize: 50,
            showEffectOn: 'render',
            rippleEffect: {
                brushType: 'stroke'
            },
            hoverAnimation: true,
            label: {
                normal: {
                    show: true
                }
            },
            itemStyle: {
                normal: {
                    color: 'purple',
                    shadowBlur: 10,
                    shadowColor: '#333'
                }
            },
            zlevel: 4 , // 关系图的zlevel最小是3,所以要大于3
        }
    ]
};

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

姜太小白

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值