gpt4 book ai didi

javascript - donut 内文

转载 作者:行者123 更新时间:2023-11-30 05:36:28 29 4
gpt4 key购买 nike

我使用 highchart 库开发了一个圆环图。我需要在 donut 的内部添加一个标签。

预期结果:

enter image description here

JS:

$(function () {
$('#container8').highcharts({
chart: {
type: 'pie',
options3d: {
enabled: false,
alpha: 0
}
},
colors: ['#081969', '#0e2569', '#1e3b81', '#284893', '#30509b'],
title: {
text: ''
},tooltip: {
enabled: false
},
plotOptions: {
pie: {
innerSize: 140,
depth: 45
}
},
series: [{
name: 'Delivered amount',
data: [
['56%', 56],
['44%', 44]
]
}]
});
});

fiddle 可以在这里找到:http://jsfiddle.net/ak9jK/

最佳答案

title: {
style: {
fontSize: '48px',
fontWeight: 'bold'
},
verticalAlign: 'middle'
},

在最后

},

function (chart) {
chart.setTitle({
text: chart.series[0].data[0].y + '%'
});
});

演示:http://jsfiddle.net/ak9jK/1/

相关问题:
Highcharts Donut Chart text in center change on hover
Place text in center of pie chart - Highcharts

关于javascript - donut 内文,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23491344/

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