0

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.

1 Answers1

2

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.

Mark
  • 106,305
  • 20
  • 172
  • 230