So I'm using Highcharts and I have a stacked bar chart to display some data like so:
As you see the columns, their values are all different. What I want to do is have the lowest value at the bottom, the 2nd lowest above that, and the third lowest above that. The line chart is fine.
There are four series in this chart, one for each color you see. And each series has a data array of 7 element, that represents each of the columns.
So how exactly can I group and sort these series and data arrays such that the lowest is always on the bottom? Because as it looks the order of the 4 series determines the order of the columns.