echarts map label自定义背景图片

echarts yekong
label: {
normal: {
  show: true,
  formatter(params) {
    return `{enterprise|${'企业'}}\n{experts|${'专家'}}`;
  },
  position: 'top',
  backgroundColor: {
    image: require('@/assets/xiaoqizi.png')  // 这是vue写法,不是的按原来的写就行
  },
  borderRadius: 3,
  width: 76.5,
  height: 61.5,
  rich: {
    enterprise: {
      color: '#fff',
      align: 'center',
      fontSize: 10,
      lineHeight: 12,
      padding: [0, 0, 0, -5]

    },
    experts: {
      color: '#fff',
      align: 'center',
      fontSize: 10,
      lineHeight: 12,
      padding: [0, 0, 0, -12]
    },
  },
},
emphasis: {
  show: false,
},
},
喜欢