本文介绍: 1.graphic 组件相关配置参考:ECharts图形元素组件(graphic)_w3cschool2. graphic 是与 series 同级别的对象,参考如下:series: [{ // ……}],graphic: [{ type: ‘group‘,// 组(可以包含图形、文字、图片) left: 0, top: ‘bottom‘, children: [{ type: ‘rect‘, ..
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进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。