echarts的饼图显示多列,要改成单列,设置了height也不管用
原因居然是,data必须设置,字符串数组或者{name: ...}对象数组,牛逼
legend: { type: 'plain', orient: 'vertical', height: 300, right: 10, // data必须有,且为数组 data: data.map(t => t.name) itemHeight: 12, itemWidth: 12 }