Boosted_d16
Boosted_d16

Reputation: 14112

Highcharts - series order on stacked charts

I'm trying to create the powerpoint chart below in highcharts however as you can see the order of the series do not match. The legend and the categories match but I'm not sure how to make the series order match?

enter image description here

This is what my highcharts replica looks like (link to jsfiddle: (https://jsfiddle.net/6qxukd74/1/)

enter image description here

How can I make the highcharts look exactly like the powerpoint chart?

Upvotes: 0

Views: 146

Answers (1)

Mark Z.
Mark Z.

Reputation: 2447

Add to the yAxis the reversedStacks property

...
    yAxis: {
        min: 0,
        reversedStacks: false
    },
...

Upvotes: 3

Related Questions