echarts中插入本地图片

一、看效果
echarts中插入本地图片_第1张图片
二、实现步骤
使用graphic属性

graphic: {
          elements: [
            {
              type: "image",
              style: {
                image: "/static/img/monitor-screenView/PUE.svg",
                width: 40,
                height: 40,
              },
              left: "center",
              top: "35%",
            },
          ],
        },

echarts中插入本地图片_第2张图片

你可能感兴趣的:(echarts)