gpt4 book ai didi

highcharts - 半圆形 donut chart 中的问题

转载 作者:行者123 更新时间:2023-12-04 16:13:00 24 4
gpt4 key购买 nike

我正在尝试制作圆形 donut chart -:
下面是我正在尝试的代码。
问题-:圆图底部变平。

$(function () {
$('#container').highcharts({
chart: {
plotBackgroundColor: null,
plotBorderWidth: 0,
plotShadow: false
},
title: {
text: 'Browser<br>shares',
align: 'center',
verticalAlign: 'middle',
y: 50
},
tooltip: {
pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
},
plotOptions: {
pie: {
dataLabels: {
enabled: true,
distance: -50,
style: {
fontWeight: 'bold',
color: 'white',
textShadow: '0px 1px 2px black'
}
},
startAngle: 1,
endAngle: 360,
center: ['50%', '75%']
}
},
series: [{
type: 'pie',
name: 'Browser share',
innerSize: '40%',
data: [
['Firefox', 45.0],
['IE', 26.8],
['Chrome', 12.8],
['Safari', 8.5],
['Opera', 6.2],
['Others', 0.7],
['Safari', 8.5],
['Opera', 6.2],
['Others', 0.7]
]
}]


});
});

我希望该图表显示为完整的圆圈,并在该图表的中心显示一个整体。
虽然圆环图可在 http://www.highcharts.com/demo/pie-donut 获得但它就像一个完整的圆圈,中间没有空间。

最佳答案

我认为问题在于您为馅饼设置了错误的中心,请参阅:http://jsfiddle.net/na86z/7/

应该:

center: ['50%', '50%']

关于highcharts - 半圆形 donut chart 中的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20326293/

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