echart中加水印logo

graphic: [{
            type: 'group',
            rotation: Math.PI / 4,//正方形旋转的角度
            bounding: 'raw',
            right: 70,
            bottom: 15,
            z: 100,
            children: [
                {
                    type: 'rect',
                    left: 'center',//描述怎么根据父元素进行定位
                    top: 'center',//描述怎么根据父元素进行定位
                    z: 100,
                    shape: {
                        width: 140,
                        height: 30
                    },
                    style: {
                        fill: 'rgba(0,0,0,0.3)'
                    }
                },
                {
                    type: 'text',
                    left: 'center',
                    top: 'center',
                    z: 100,
                    style: {
                        fill: '#fff',
                        text: 'aupoo.cn',
                        font: 'bolder 14px Microsoft YaHei'
                    }
                }
            ]
        }]

reat在group里面,因为右下角是【0,0】,正方形的定位点是中心,要右下角对齐,right和bottom就应该是快高的一半

你可能感兴趣的:(echarts)