これは問題を抱えているかもしれませんが、もっと混在しているはずです。グループ化されたハイチャートのグループ化されたグラフ - グループ化された看護援護者のプラグイン
は
$(function() {
$('#container').highcharts({
chart: {
type: 'column',
},
title: {
text: ''
},
plotOptions: {
column: {
stacking: 'normal',
events: {
legendItemClick: function() {
var index = this.index;
var legendName = this.name;
var series = this.chart.series;
series.forEach(function(el, index){
if(legendName == el.name) {
if(el.visible)
el.setVisible(false);
else
el.setVisible(true);
}
});
return false;
}
},
},
},
yAxis: [{
labels: {
format: '{value} $',
style: {
color: Highcharts.getOptions().colors[2]
}
},
title: {
text: 'First Y Axis',
style: {
color: Highcharts.getOptions().colors[2]
}
},
}, {
gridLineWidth: 0,
title: {
text: 'Second Y Axis',
style: {
color: Highcharts.getOptions().colors[0],
}
},
labels: {
format: '{value}',
style: {
color: Highcharts.getOptions().colors[0]
}
},
}],
xAxis: {
labels: {
rotation: -90,
groupedOptions: [{
rotation: 0,
style: {
rotation: 0,
}
}],
},
categories: [
{
name:'Apples',
categories: ['male', 'female']
},
{
name:'Oranges',
categories: ['male', 'female']
},
{
name:'Pears',
categories: ['male', 'female']
},
{
name:'Grapes',
categories: ['male', 'female']
},
{
name:'AppBananasles',
categories: ['male', 'female']
}]
},
series: [
{
name: 'John',
data: [5, 3, 4, 7, 2],
stack: 'male'
}, {
name: 'Joe',
data: [3, 4, 4, 2, 5],
stack: 'male'
}, {
name: 'Jane',
data: [2, 5, 6, 2, 1],
stack: 'female'
}, {
name: 'Janet',
data: [3, 0, 4, 4, 3],
stack: 'female'
},
]
})
})以下のサンプルコードを有するとフィドルリンクを持っています。グループ化・カテゴリーのプラグイン - ここhighchartsとhighchartsプラグインのいずれかを使用して
https://jsfiddle.net/9o64ybo4/
。 私はここにいくつかのカテゴリとサブカテゴリを持ち、最初の列の下に1番目のサブカテゴリ(男性)を、2番目の列の下に2番目の列(女性)を表示するように計画しています。
私は、(ブドウとAppBananasles)のような2つのトップレベルのカテゴリを失っていることがわかります。
ご了承ください。
パーフェクト!両方のアプローチを使用することができますが、私は1つ1つをもっと好きです:)ありがとう –