gpt4 book ai didi

javascript - HighCharts 半饼图圆

转载 作者:行者123 更新时间:2023-12-02 17:49:23 25 4
gpt4 key购买 nike

我正在尝试构建一个 Semi-pie HighCharts 中的图表。我只需向半圆提供 1 个值 45%,在本例中 Firfox 为 45%。我希望当我只提供 1 个 value 时,它​​实际上应该仅渲染饼图的 45%,而不是整个 100%。我怎样才能做到这一点?

这是我的 jsfiddle link

最佳答案

不是要抢@AntoJurković的风头,但他在评论中的想法是实现你想要的最简单的方法。

这是一个示例 fiddle .

重要的部分是:

series: [{
type: 'pie',
name: 'Browser share',
innerSize: '50%',
data: [
{y: 45, name: 'Firefox'},
{y: 55, color: 'transparent',dataLabels:{enabled: false}} // instead of the background color, use transparent, and disable dataLabels
]
}]

   tooltip: {
formatter: function(){
if (this.point.color == "transparent") {
return false; // suppress the tooltips if it has no color
} else {
return this.series.name + ':<b>' + this.point.percentage +'%</b>';
}
}
},

关于javascript - HighCharts 半饼图圆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21496471/

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