1. graphic 组件相关配置参考:ECharts图形元素组件(graphic)_w3cschool

2. graphic 是与 series级别对象,参考如下:

 

series: [{
    // ......
}],
graphic: [{
    type: 'group',// 组(可以包含图形、文字图片left: 0,
    top: 'bottom',
    children: [{
            type: 'rect',
            z: 100,
            left: '0',
            top: '0',
            shape: {
                width: 180,
                height: 100
            },
            style: {
                fill: '#f6f6f6',
            }
        },
        {
            type: 'image',// 图片
              left:10,
              top: 10,
              z: 100,
              bounding: 'raw',
              style: {
                  image: '/static/UserSys/product/cadre/Report/img/country.png',
                  width: 20,
                  height: 20,
              }
          },
          {
            type: 'text',// 文字
            z: 100,
            left: 45,
            top: 13,
            style: {
                fill: '#e46c11',
                text: '全球分布      ' + countryCounts + ' 国',
                font: '14px Microsoft YaHei'
            }
        },
        {
            type: 'image',
              left:10,
              top: 40,
              z: 100,
              bounding: 'raw',
              style: {
                  image: '/static/UserSys/product/cadre/Report/img/china.png',
                  width: 20,
                  height: 20,
              }
          },
          {
            type: 'text',
            z: 100,
            left: 45,
            top: 43,
            style: {
                fill: '#e46c11',
                text: '中籍员工  ' + chinaNaticeCount + ' 人',
                font: '14px Microsoft YaHei'
            }
        },
        {
            type: 'image',
              left:10,
              top: 70,
              z: 100,
              bounding: 'raw',
              style: {
                  image: '/static/UserSys/product/cadre/Report/img/global.png',
                  width: 20,
                  height: 20,
              }
          },
          {
            type: 'text',
            z: 100,
            left: 45,
            top: 73,
            style: {
                fill: '#e46c11',
                text: '外籍员工  ' + foreignNativeCount + ' 人',
                font: '14px Microsoft YaHei'
            }
        },
    ]
}]

原文地址:https://blog.csdn.net/Le_12345679/article/details/122433051

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_27664.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注