score:1

Accepted answer

so, you just want it to show as normal with 0 at the coordiante root? no reversed needed?

document.addeventlistener('domcontentloaded', function () {
highcharts.chart('container', {
  chart: {
    type: 'bar',
    //marginleft: 150
  },

  xaxis: {
    type: 'category',
    title: {
      text: null
    },
    max: 25,
    //min: 0,
    reversed:false,
    tickpositions : [9,3,0]
    //ticklength: 1
  },
  yaxis: {
  reversed: false,
   min: 0,
   max: 10,
    title: {
      text: 'votes',
      align: 'high'
    }
  },
  legend: {
    enabled: false
  },
  credits: {
    enabled: false
  },
  series: [{
    name: 'votes',
    data: [
      [0, 10],
      [3, 10],
      [9, 10],

    ],
    datalabels: {
      //enabled: true,
      color: '#333',
      //inside: true
    }
  }]
});
});
<script src="https://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 300px"></div>


Related Query

More Query from same tag