echarts的饼图显示多列问题

echarts的饼图显示多列,要改成单列,设置了height也不管用

原因居然是,data必须设置,字符串数组或者{name: ...}对象数组,牛逼

legend: {
    type: 'plain',
    orient: 'vertical',
    height: 300,
    right: 10,
    // data必须有,且为数组
    data: data.map(t => t.name)
    itemHeight: 12,
    itemWidth: 12
}

 

posted @ 2024-01-03 16:16  全玉  阅读(137)  评论(0编辑  收藏  举报