score:0

Accepted answer

yes - it's possible. actually the column on your chart is rounded - you can observe that when it's hovered.

you sholud remove plot bands and add two more series instead:

  series: [{
    data: [{
      y: 360,
      target: 300
    }]
  }, {
    data: [{
      y: 280,
      target: 250,
      color: '#c0ffee'
    }]
  }, {
    data: [{
      y: 150,
      target: 250,
      color: '#bada55'
    }]
  }],

grouping has to be disabled to make series overlapped.

live demo: https://jsfiddle.net/blacklabel/p2zwf6e8/

api reference: https://api.highcharts.com/highcharts/


Related Query

More Query from same tag