我要求在highcharts中显示堆叠百分比柱形图,显示特定百分比数字的细分而不是100%的细分。例如,如果数字为60%,则图表应显示60%的细分(20%蓝色,10%绿色,30%黄色),而不是填充至100%。我对百分比图表的理解是它们总是100%,但是想知道这种操作是否可能以某种方式使用高级图表?感谢。
答案 0 :(得分:0)
使用Stacked列而不是堆叠百分比列,然后只需在标签上添加百分比。百分比列自动确定所提供的所有数据点的百分比,听起来您希望该列只是简单地呈现所提供的信息。
答案 1 :(得分:0)
与 @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]
}]
});
});