Hello, I have a chart with the vertical bars showing values per day. The bar will be red/yellow or green depending in which zone it is. Those zones are shown in the chart as well but the zones are currently overleaping over the bars. I would like the colored zones to be behind the bars instead a top of them. Tried different orders in the microflow while generating the JSON for the chart and also I tried with zorder but nothing works. Does anybody know how to achieve this? JSON that is generated: [ { "x": [ "2024-07-02T00:00:00.000Z", "2024-08-01T23:59:59.999Z" ], "y": [ 10, 10 ], "marker": { "color": "#6FC6B830", "opacity": 0 }, "line": { "color": "#6FC6B830" }, "mode": "none", "fill": "tozeroy", "fillcolor": "#6FC6B830" }, { "x": [ "2024-07-02T00:00:00.000Z", "2024-08-01T23:59:59.999Z" ], "y": [ 30, 30 ], "marker": { "color": "#FB8C0030", "opacity": 0 }, "line": { "color": "#FB8C0030" }, "mode": "none", "fill": "tonexty", "fillcolor": "#FB8C0030" }, { "x": [ "2024-07-02T00:00:00.000Z", "2024-08-01T23:59:59.999Z" ], "y": [ 30, 30 ], "marker": { "color": "#DB023730", "opacity": 0 }, "line": { "color": "#DB023730" }, "mode": "none", "fill": "tonexty", "fillcolor": "#DB023730" }, { "x": [ "2024-07-29T00:00:00.000Z", "2024-07-30T00:00:00.000Z", "2024-07-31T00:00:00.000Z", "2024-08-01T00:00:00.000Z" ], "y": [ 6, 8, 2, 3 ], "marker": { "color": "#6FC6B8", "opacity": 1, "line": { "color": "#6FC6B8" } }, "line": { "color": "#6FC6B8" }, "name": "Green", "type": "bar" }, { "x": [ "2024-07-28T00:00:00.000Z" ], "y": [ 12 ], "marker": { "color": "#FB8C00", "opacity": 1, "line": { "color": "#FB8C00" } }, "line": { "color": "#FB8C00" }, "name": "Yellow", "type": "bar" }, { "x": [ "2024-08-01T00:00:00.000Z", "2024-07-31T00:00:00.000Z", "2024-07-30T00:00:00.000Z", "2024-07-29T00:00:00.000Z", "2024-07-28T00:00:00.000Z", "2024-07-27T00:00:00.000Z", "2024-07-26T00:00:00.000Z", "2024-07-25T00:00:00.000Z", "2024-07-24T00:00:00.000Z", "2024-07-23T00:00:00.000Z", "2024-07-22T00:00:00.000Z", "2024-07-21T00:00:00.000Z", "2024-07-20T00:00:00.000Z", "2024-07-19T00:00:00.000Z", "2024-07-18T00:00:00.000Z", "2024-07-17T00:00:00.000Z", "2024-07-16T00:00:00.000Z", "2024-07-15T00:00:00.000Z", "2024-07-14T00:00:00.000Z", "2024-07-13T00:00:00.000Z", "2024-07-12T00:00:00.000Z", "2024-07-11T00:00:00.000Z", "2024-07-10T00:00:00.000Z", "2024-07-09T00:00:00.000Z", "2024-07-08T00:00:00.000Z", "2024-07-07T00:00:00.000Z", "2024-07-06T00:00:00.000Z", "2024-07-05T00:00:00.000Z", "2024-07-04T00:00:00.000Z", "2024-07-03T00:00:00.000Z" ], "y": [ 6.2, 7, 8.66666667, 9, 12 ], "line": { "color": "blue" }, "mode": "lines", "name": "", "type": "scatter" } ] Here is how it looks now: Thank you in advance, Stefan