Reputation: 1
I want to use combo-multiple-axis chart but i want to convert "columns" to "stacked columns" because one of my "y value serie" is the sum of 3 data series and i want to show that change on my chart too.
I am so new with javascript and coding but i guess there might be a way to add sub-data series to a primary data serie.
Upvotes: 0
Views: 1023
Reputation: 108567
Just turn on stacking on the columns and then add multiple series of type column
and this will just work.
plotOptions: {
column: {
stacking: 'normal'
}
},
Fiddle example here.
Upvotes: 2