柱状echarts 自定义图例设置

柱状echarts 自定义图例设置

 

 

  legend: {           // 图例           orient: 'vertical',           left: 'right',           icon: 'circle',           data: this.legendData,           formatter: name => {             return `{a|${this.chartData.find(item => item.name === name)               ?.value || 0}台}\n{b|${name}}`           },           textStyle: {             rich: {               a: {                 fontSize: 20,                 color: '#25355',                 fontWight: '600',                 verticalAlign: 'top',                 padding: [0, 0, 10, 0],               },               b: {                 fontSize: 14,                 color: '#A3AEC1',                 fontWeight: 500,               },             },           },         },
上一篇:Matplotlib cheatsheet


下一篇:python数据可视化(matplotlib、scatter)