wrote:
Hi osacc,
Check the JSON that is produced by looking at the page source, and compare that to the JSON in a Highcharts chart example that works.
Hi Kilian I've looked at the source, apparently instead of 4 points in every series, I have 8:
series: [ { name: 'Late', data: [ {y:1}, {y:1}, {y:1}, {y:1}, {y:null}, {y:null}, {y:null}, {y:null} ], color: outsystems.chartColors [ 1 % outsystems.chartColors.length ] }, { name: 'On time', data: [ {y:null}, {y:null}, {y:null}, {y:null}, {y:3}, {y:1}, {y:2}, {y:6} ], color: outsystems.chartColors[ 0 % outsystems.chartColors.length ] } ]
Which is odd, since I only ever add 4 points to each of the 2 series. But apparently they do stack, only they are on top of (or under) zero-value bars?