Reputation: 14112
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?
This is what my highcharts replica looks like (link to jsfiddle: (https://jsfiddle.net/6qxukd74/1/
)
How can I make the highcharts look exactly like the powerpoint chart?
Upvotes: 0
Views: 146
Reputation: 2447
Add to the yAxis the reversedStacks property
...
yAxis: {
min: 0,
reversedStacks: false
},
...
Upvotes: 3