gpt4 book ai didi

javascript - Highcharts饼图隐藏零扇区

转载 作者:行者123 更新时间:2023-11-30 12:29:03 31 4
gpt4 key购买 nike

始终存在 0 (0%) 值的薄扇区。如何在饼图上隐藏零值扇区。 http://jsfiddle.net/t0hgLx2n/

data: [
['Firefox', 100.0],
['Others', 0]
]

去掉这条白线enter image description here
(来源:piccy.info)

最佳答案

这个问题可以分两部分来解决:

  1. 过滤零数据

        data: [
    ['Firefox', 100.0],
    ['Others', 0]
    ].filter(function(d) {return d[1] > 0})
  2. 删除单扇饼中的边框

    (请引用Border in one-slice pie #1828)


http://jsfiddle.net/Joe_Wu/sub2houn/

关于javascript - Highcharts饼图隐藏零扇区,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28301604/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com