百度隐藏echart中饼图的标签

问题描述 投票:0回答:3

我指的是这个 https://ecomfe.github.io/echarts/doc/example/pie1.html#-en 示例。我无法隐藏饼图中的相邻标签。我圈出了我希望隐藏在附图中的标签之一。请帮忙。谢谢!

enter image description here

pie-chart donut-chart baidu echarts
3个回答
14
投票

找到了我的问题的解决方案。我必须将以下代码包含到选项中并且它起作用了:

itemStyle : {
              normal : {
                         label : {
                                   show : false
                                  },
                         labelLine : {
                                       show : false
                                      }
                         }
              }

1
投票

要动态隐藏标签和标签线,同时将数据传递到圆周率图,您可以使用以下属性

{ value: 1, name: 'Open', label: { show: false }, labelLine: { show: false } },
{ value: 3, name: 'In Progress', label: { show: false }, labelLine: { show: false } },
{ value: 2, name: 'Done', label: { show: false }, labelLine: { show: false } }

0
投票

将此添加到

EChartsOption.series

    label: {
        show: false
    },
    labelLine: {
        show: false
    },
© www.soinside.com 2019 - 2024. All rights reserved.