Bar Chart

Spacing in bars(Width const)

HTML

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

<div id="container" style="min-width: 310px; max-width: 800px; height: 400px; margin: 0 auto"></div>

JavaScript

$(function() {
  $('#container').highcharts({
    "chart": {
      "backgroundColor": "rgba(255,255,255,0)",
      "height": 681,
      "width": 550,
      "plotBackgroundColor": "rgba(255,255,255,0)",
      "zoomType": "xy",
      
      "options3d": {
        "enabled": false
      }
    },
    "title": {
      "text": null
    },
   
    "plotOptions": {
      "series": {
        "animation": {
          "duration": 700
        },
        "cursor": "pointer",
				
        "pointWidth":20,
        "pointPadding": 0.5
        
      }
    },
   
    "credits": {
      "enabled": false
    },
   
    "xAxis": {
      "title": {
        "text": "EmployeeByDept [dept_emp_cube]",
      
        "margin": 5
      },
      "opposite": false,

      "labels": {
        "enabled": true,
       
        "rotation": 330
      },

      "categories": ["Business  Analyst", "Documentation", "Finance", "HR_ADMIN", "Personnel", "QA", "ceo", "developer", "manager", "tech_manager", "technical writer"],

			"tickmarkPlacement":"on",
      "plotLines": [],
      "plotBands": []
    },
    "yAxis": [{
      "title": {
        "text": "Salary",
       
        "margin": 5
      },
      "labels": {
        "enabled": true,
       
        "rotation": 270
      },


    }],
    "series": [{
   
      "type": "bar",

      "data": [{
        "eQCategoryValue": "Business  Analyst",
        "y": 49300
      }, {
        "eQCategoryValue": "Documentation",
        "y": 30000
      }, {
        "eQCategoryValue": "Finance",
        "y": 50100
      }, {
        "eQCategoryValue": "HR_ADMIN",
        "y": 130101
      }, {
        "eQCategoryValue": "Personnel",
        "y": 80100
      }, {
        "eQCategoryValue": "QA",
        "y": 2000070.21
      }, {
        "eQCategoryValue": "ceo",
        "y": 160100
      }, {
        "eQCategoryValue": "developer",
        "y": 334845
      }, {
        "eQCategoryValue": "manager",
        "y": 430100
      }, {
        "eQCategoryValue":...