gpt4 book ai didi

javascript - highcharts - donut chart - 内外标签

转载 作者:行者123 更新时间:2023-11-29 22:01:31 24 4
gpt4 key购买 nike

我使用 highcharts 库创建了一个圆环图。

我需要两个不同的数据标签,一个在外面,另一个在里面。

预期结果:

enter image description here

这是一个 fiddle :http://jsfiddle.net/FQxf4/

JS:

$(function () {
$('#container5').highcharts({

chart: {
type: 'pie',
options3d: {
enabled: false,
alpha: 0
}
},

colors: ['#081969', '#0e2569', '#1e3b81', '#284893', '#30509b'],
title: {
text: ''
},tooltip: {
enabled: false
},
plotOptions: {
pie: {
innerSize: 130,
depth: 45
}
},
series: [{
name: 'Delivered amount',
data: [
['31%', 31],
['25%', 25],
['22%', 22],
['15%', 15],
['7%', 7]
]
}]
});
});

最佳答案

您可以使用两个相同的系列。像这样:

series: [{
name: 'Delivered amount',
data: [
['31%', 31],
['25%', 25],
['22%', 22],
['15%', 15],
['7%', 7]
],
size: '60%',
dataLabels: {
formatter: function() {
return this.y
},
distance:10
}
},{
name: 'Delivered amount',
data: [
['3', 31],
['2', 25],
['2', 22],
['5', 15],
['7', 7]
],
size: '60%',
dataLabels: {
formatter: function() {
return this.point.name
},
color: 'white',
distance:-10
}
}]

DEMO

关于javascript - highcharts - donut chart - 内外标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23489447/

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