Align ticks ON

by amrutaJgtp

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<script src="https://code.highcharts.com/modules/export-data.js"></script>

<div id="container" style="height: 400px"></div>

JavaScript

Highcharts.chart('container', {
  "chart": {
    "alignTicks": true
  },
  "tooltip": {
    "enabled": true
  },
  "xAxis": {
    "opposite": false,
    "id": "xAxis0",
    "tickWidth": 1,
    "categories": ["Small Business", "Home Office", "Corporate", "Consumer"],
    "tickmarkPlacement": "on"
  },
  "yAxis": [{
    "opposite": false,
    "gridLineWidth": 0,
    "tickWidth": 1,
    "labels": {
      "enabled": true,
      "style": {
        "color": "#000000",
        "fontFamily": "Open Sans",
        "fontSize": "1rem",
        "fontStyle": "normal",
        "fontWeight": "normal",
        "textDecoration": "none"
      }
    },
    "lineWidth": 0,
    "lineColor": "rgba(174,174,174,1)",
    "reversed": false,
    "id": "yAxis0"
  }, {
    "opposite": true,
    "gridLineWidth": 0,
    "tickWidth": 1,
    "labels": {
      "enabled": true,
      "style": {
        "color": "#000000",
        "fontFamily": "Open Sans",
        "fontSize": "1rem",
        "fontStyle": "normal",
        "fontWeight": "normal",
        "textDecoration": "none"
      }
    },
    "lineWidth": 0,
    "lineColor": "rgba(174,174,174,1)",
    "reversed": false,
    "id": "yAxis1"
  }],

  "series": [{
    "zIndex": 2,
    "type": "column",
    "yAxis": 0,
    "data": [{
      "categoryValue": "Small Business",
      "y": 15495
    }, {
      "categoryValue": "Home Office",
      "y": 9031
    }, {
      "categoryValue": "Corporate",
      "y": 6802
    }, {
      "categoryValue": "Consumer",
      "y": 2455
    }],
    "name": "SALES",
    "showInLegend": true,
    "id": "series0"
  }, {
    "zIndex": 1,
    "type": "column",
    "yAxis": 1,
    "data": [{
      "categoryValue": "Small Business",
      "y": 1100
    }, {
      "categoryValue": "Home Office",
      "y": 2500
    }, {
      "categoryValue": "Corporate",
      "y": 850
    }, {
      "categoryValue": "Consumer",
      "y": 1500
    }],
    "name": "DISCOUNT",
    "showInLegend": true,
    "id": "series1"
  }]
});