gpt4 book ai didi

javascript - highcharts堆积百分比柱状图可以小于100%吗

转载 作者:行者123 更新时间:2023-11-28 06:12:27 25 4
gpt4 key购买 nike

我要求在 highcharts 中有一个堆叠百分比柱形图显示特定百分比数字的分割而不是 100% 的分割。例如,如果数字是 60%,图表应该显示 60% 的分割(20% 蓝色,10% 绿色,30% 黄色)而不是填充到 100%。我对百分比图表的理解是它们总是 100%,但想知道这种操作是否可以通过某种方式用 Highcharts 实现?谢谢。

最佳答案

正如 @Alden Be 所说,使用带有 % 标签的堆叠列。这是 JSFiddle example .

$(function () {
$('#container').highcharts({
chart: {
type: 'column'
},
title: {
text: 'Stacked column chart'
},
xAxis: {
categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas']
},
yAxis: {
min: 0,
title: {
text: 'Percentage'
},
labels: {
formatter: function () {
return this.value + '%';
}
},
stackLabels: {
enabled: true,
style: {
fontWeight: 'bold',
color: (Highcharts.theme && Highcharts.theme.textColor) || 'gray'
},
formatter: function () {
return this.total + '%';
}
}
},
legend: {
align: 'right',
x: -30,
verticalAlign: 'top',
y: 25,
floating: true,
backgroundColor: (Highcharts.theme && Highcharts.theme.background2) || 'white',
borderColor: '#CCC',
borderWidth: 1,
shadow: false
},
tooltip: {
headerFormat: '<b>{point.x}</b><br/>',
pointFormat: '{series.name}: {point.y}%<br/>Total: {point.stackTotal}%'
},
plotOptions: {
column: {
stacking: 'normal',
dataLabels: {
enabled: true,
format:'{y}%',
color: (Highcharts.theme && Highcharts.theme.dataLabelsColor) || 'white',
style: {
textShadow: '0 0 3px black'
}
}
}
},
series: [{
name: 'John',
data: [5, 3, 4, 7, 2]
}, {
name: 'Jane',
data: [2, 2, 3, 2, 1]
}, {
name: 'Joe',
data: [3, 4, 4, 2, 5]
}]
});
});

关于javascript - highcharts堆积百分比柱状图可以小于100%吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36090890/

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