我想在堆积柱形图中表示两类数据。虽然我能够得到一列显示其子类别数据的堆栈。下面是我正在尝试的代码
$(function () {
$('#container').highcharts({
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: -70,
verticalAlign: 'top',
y: 20,
floating: true,
backgroundColor: (Highcharts.theme && Highcharts.theme.legendBackgroundColorSolid) || 'white',
borderColor: '#CCC',
borderWidth: 1,
shadow: false
},
tooltip: {
formatter: function() {
return '<b>'+ this.x +'</b><br/>'+
this.series.name +': '+ this.y +'<br/>'+
'Total: '+ this.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]
}]
});
});
我想要一个可以完全满足以下要求的图表。如果我们的汽车数据为 ford=25,Maruti=30,Honda=20, 我想显示每月购买 4 轮车(汽车)和 2 轮车(自行车和踏板车)的销售情况,例如 10 月的月份, BMW=15 和 2-wheeler Bajaj=70,Yamaha=60,Honda=40,Suzuki=10。现在我希望我的图表将每个 4-wheeler 显示为一个堆叠列,显示其所有数据(Ford、Maruti、Honda、BMW)作为它的堆栈,对于 2-wheeler 也是如此。任何帮助将不胜感激。