積み上げ縦棒グラフで 2 つのカテゴリのデータを表現したいと考えています。サブカテゴリデータを示すスタックを含む1つの列を取得できますが、以下は私が試しているコードです
$(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、 BMW=15、二輪バジャイ=70、ヤマハ=60、ホンダ=40、スズキ=10。ここで、グラフに各 4 輪車を 1 つの積み上げ列として表示し、そのすべてのデータ (フォード、マルチ、ホンダ、BMW) をそのスタックとして表示し、2 輪車についても同じようにします。どんな助けでも大歓迎です。