修改echarts图例样式

最后修改结果

修改echarts图例样式_第1张图片

代码

 legend: {
     left: 'right', //位置
     icon: "rect",//形状  类型包括 circle,rect,line,roundRect,triangle,diamond,pin,arrow,none
     itemWidth: 10,  // 设置宽度
     itemHeight: 4, // 设置高度
     itemGap: 20, // 设置间距
     data: ['耕地总量', '农业经济总量', '农药使用量', '土地质量综合评估'],
     textStyle: {
        //文字样式
        color: "#B4CEFF",
         fontSize: "12"
     }
},

 

你可能感兴趣的:(修改echarts图例样式)