Echarts中legend图例组件的配置

  

legend: {
   orient: 'vertical',//  垂直显示
         left: '70%',//距离左边位置
         y: '4%',// 距离上边位置
    itemHeight: 7, //修改icon图形大小
          icon: 'circle',//图形形状('circle', 'rect', 'roundRect', 'triangle', 'diamond', 'pin', 'arrow', 'none')
          textStyle: {// 样式设置
              fontSize: 12,
              color: '#989898'
          },
    data: ['深圳业务1部','深圳业务2部','深圳业务3部'],
},

 

若要每个单独设置样式,则可写成:

legend: {
    data: [{
        name: '系列1',
        // 强制设置图形为圆。
        icon: 'circle',
        // 设置文本为红色
        textStyle: {
            color: 'red'
        }
    }]
}

 

你可能感兴趣的:(Echarts中legend图例组件的配置)