隐藏echart中饼图中的标签 by baidu
Hide the labels in the pie graph in echart by baidu
我指的是这个 https://ecomfe.github.io/echarts/doc/example/pie1.html#-en 示例。我无法隐藏饼图中的相邻标签。我在附图中圈出了我希望隐藏的标签之一。请帮忙。谢谢!
找到了我的问题的解决方案。我必须在选项中包含以下代码并且它有效:
itemStyle : {
normal : {
label : {
show : false
},
labelLine : {
show : false
}
}
}
我指的是这个 https://ecomfe.github.io/echarts/doc/example/pie1.html#-en 示例。我无法隐藏饼图中的相邻标签。我在附图中圈出了我希望隐藏的标签之一。请帮忙。谢谢!
找到了我的问题的解决方案。我必须在选项中包含以下代码并且它有效:
itemStyle : {
normal : {
label : {
show : false
},
labelLine : {
show : false
}
}
}