https://jsfiddle.net/vasjav1/ywspnocd
我想从最小到最大排序堆叠条形图,即最小的条形图应该首先出现,最大的应该出现在最后。我没有发现任何解决方案存在于任何其他地方与堆叠条形图有关。有解决方案存在于这里https://www.highcharts.com/docs/advanced-chart-features/data-sorting,但它是最适合的条形图,但我不能适合它与堆叠条形图。有人可以请帮我排序堆叠条形图吗?
Highcharts.chart('container', {
chart: {
type: 'column'
},
title: {
text: 'Stacked column chart'
},
xAxis: {
categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas']
},
yAxis: {
min: 0,
title: {
text: 'Total fruit consumption'
},
stackLabels: {
enabled: true,
style: {
fontWeight: 'bold',
color: (Highcharts.theme && Highcharts.theme.textColor) || 'gray'
}
}
},
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,
color: (Highcharts.theme && Highcharts.theme.dataLabelsColor) || 'white'
}
}
},
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]
}]
});
2条答案
按热度按时间n3schb8v1#
首先必须对数据进行排序,然后将其输入到highcharts中。例如,如果输入数据可以表示为:
...然后您可以对 that 进行排序,然后将其转换为要传递给highcharts的参数:
第一个
hmtdttj42#
目前,数据排序功能仅适用于单个系列。
您可以使用相关排序,如here所述(例如:(x、x、e、f、x)
或单独对每个系列进行排序(例如:https://jsfiddle.net/BlackLabel/dsm0bz3k/),但最好的方法是使用trincot的答案。