Echarts 自定义 图例 图标 legend

效果图:

 

代码:

     this.bar = {
        title: { show: true },
        legend: {
          icon: 'rect',
          show: true,
          left: '35%',
          width: '100%',
          orient: 'horizontal',
          align: 'left',
          itemGap: 30,
          itemWidth: 9,
          itemHeight: 9,
          bottom: '87%',
          data: ['本月', '同比', { name: '环比', icon: 'line' }] //添加name属性,定义icon 为line
        },


版权声明:本文为qq_15542987原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。