SpiderChart-PointPlacement

HTML

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

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

JavaScript

$(function() {

  $('#container').highcharts({

    "chart": {
      "height": 552,
      "width": 600,
      "polar": true
    },
    "tooltip": {
      "enabled": true,
      "shared": false,
    },
    "plotOptions": {
      "series": {
        "threshold": null
      }
    },
    "xAxis": {
      "categories": ["Business  Analyst", "Documentation", "Finance", "HR_ADMIN", "Personnel", "QA", "Sales Executive mgr", "ceo", "developer", "manager", "tech_manager", "technical writer"],
      "tickmarkPlacement": "on"
    },
    "series": [{
      "type": "area",
      "data": [49300, 30000, 50100, 130101, 80100, 2000070.21, 20000, 160100, 334845, 430100, 274200, 98000],
      "name": "Salary",
      "pointPlacement": "on",
      "color": "rgba(106,0,255,1)",
      "fillColor": "rgba(106,0,255,0)"
    }, {
      "type": "area",
      "data": [2000070.21, 2000070.21, 2000070.21, 2000070.21, 2000070.21, 2000070.21, 2000070.21, 2000070.21, 2000070.21, 2000070.21, 2000070.21, 2000070.21],
      "name": "Target",
      "pointPlacement": "on",
      "color": "#000000",
      "fillColor": "rgba(106,0,255,0)"
    }]

  });
});