我想在堆积柱形图中表示两类数据。虽然我能够得到一个堆栈显示其子类别数据的列。下面是我正在尝试的代码
$(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]
}]
});
});
我想要一张可以满足下面提到的要求的图表。我想以月为单位购买4轮车(汽车)和2轮车(自行车和踏板车)按月销售,例如10月份如果我们有汽车数据,如福特= 25,Maruti = 30,本田= 20, BMW = 15,2轮车Bajaj = 70,雅马哈= 60,本田= 40,铃木= 10。现在我希望我的图表显示每个4轮车作为一个堆叠列显示其所有数据(福特,Maruti,本田,宝马)作为其堆栈和相同的2轮车。任何帮助将不胜感激。
答案 0 :(得分:0)
我建议熟悉分组插件https://github.com/blacklabel/grouped_categories/,它似乎是您问题的解决方案。如果正确,请告诉我们。