score:2

Accepted answer

with your current options, each series has only one point, connected to the first category.

instead, create two series (one green, one red) with all points in data: https://jsfiddle.net/blacklabel/7sorc0ju/11/

snippet:

series: [{
  "name": "capital metro (k)",
  "data": [11, 1, 0, 1, 13, 1, 1],
  "stack": "capital metro (k)",
  "color": "red"
}, {
  "name": "capital metro (k)",
  "data": [4, 0, 1, 0, 6, 0, 0],
  "stack": "capital metro (k)",
  "color": "green"
}]

Related Query

More Query from same tag