Reversing order of series in Apliqo UX stacked bar chart

Hi All,

It seems by default, the order in which series are “stacked” in a stacked bar or column chart in Apliqo UX is that the last series is displayed first and the first series is displayed last. There is a post on this topic on the Highcharts forum (Highcharts Demo - JSFiddle - Code Playground), which shows how to reverse this, but I can’t get it to work.

So two questions:
(1) is the reversedStacks property within Highcharts supported by Apliqo UX; and
(2) if the answer to question 1 is yes, can anyone spot the problem with this:

The y axis now requires a set of brackets to work correctly:

"yAxis": [
  {
    "title": {
      "enabled": false
    },
    "reversedStacks": false,
    "labels": {
      "enabled": true
    },
    "opposite": true,
    "gridLineWidth": 1
  }
]

Making this change should get you your reversed stacks.

1 Like

Perfect, many thanks @PSposito