当echarts的legend字数过多的时候变成省略号

legend: {
  data: ['国有土地使用','食品药品安全','生态环境和资源保护','国有财产保护'],
  orient: 'horizontal',
  left: '10',
  bottom:'5',
  formatter: function(name){
    return name.length>5?name.substr(0,5)+"...":name;
  }
}
原文地址:https://www.cnblogs.com/henuyuxiang/p/9727942.html