score:1

Setting to series.threshold give you possibility to serve base to the column, in your case you can start column from 4 at yaxis.

 Highcharts.chart('container', {
  chart: {
    type: 'column'
  },
  title: {
    text: 'Stacked column chart'
  },
  xAxis: {
    categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas']
  },
  series: [{
    name: 'John',
    threshold: 4,
    data: [5, 3, 4, 7, 2]
  }, {
    name: 'Jane',
    data: [2, 2, 3, 2, 1]
  }, {
    name: 'Joe',
    data: [3, 4, 4, 2, 5]
  }]
});

Demo: https://jsfiddle.net/BlackLabel/f73zcu4t/


Related Query

More Query from same tag