echarts修改legend样式(正方形、矩形、圆形等等)

正方形

legend: {
     
          itemHeight: 24,
          itemWidth: 24,
          data: [
            {
     
              name: '修边比例',
              icon: 'rect',
            },
            {
     
              name: '平均门幅',
              icon: 'rect',
            }
          ]
        },

以上显示长宽为24的正方形。

其他自带形状

icon 展示
circle 圆形
rect 矩形
roundRect 圆角矩形
triangle 三角形
diamond 菱形
pin 水滴
arrow 箭头
none 不显示图标

你可能感兴趣的:(JavaScript,Echarts,Legend)